bug fixes

This commit is contained in:
ltcptgeneral 2020-05-12 20:21:11 -05:00
parent 6d80ffca59
commit 16603392c9

View File

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