May-01-2019, 09:39 AM
maybe have a look of the indentation of "newarray.append(s)" line (go back once on the left) and the result is identical to numpy.dot
I've a comment/advice: dynamic allocation memory is costly (using append) and you must initiate your matrix/array before any calculation (using numpy.zeros)
I've a comment/advice: dynamic allocation memory is costly (using append) and you must initiate your matrix/array before any calculation (using numpy.zeros)