bug fixes

This commit is contained in:
ltcptgeneral 2020-05-12 20:21:11 -05:00
parent 24f8961500
commit 6fee42f6d2

View File

@ -990,7 +990,7 @@ class ArrayTest(): # tests on nd arrays independent of basic_stats
temp = np.array([])
for a in *args:
for a in args:
temp += a
return temp
@ -999,7 +999,7 @@ class ArrayTest(): # tests on nd arrays independent of basic_stats
temp = np.array([])
for a in *args:
for a in args:
temp *= a
return temp