I am trying to multiply a matrix using numpy by itself N times, this is my current code
import numpy as np
fil1=3
col1=2
mat1 = random.random((fil1,col1))
mat3 = np.zeros((fil1,col1))
iter = 2
print('Matriz A:\n',mat1)
for r in range(0,fil1)...
asked by
25.09.2018 / 08:27