Generation

generate functionSat, 01 Apr 2023

Una calculadora del determinante de una matriz n*n

from numpy import array, zeros from numpy.linalg import det A = array([[1, 2, 1], [2, 1, 0], [3, 0, 1]], float) print(det(A))

Want to kickstart your project?Use the new AI Studio to create your code