HOME/Articles/

matplotlib example determinant (snippet)

Article Outline

Python matplotlib example 'determinant'

Modules used in program:

  • import numpy

python determinant

Python matplotlib example: determinant

import numpy
from numpy.linalg import det

a = [[1,2], [-2,1], [2,5], [1,1]]
b = [[1,2], [0.5, 3]]
c = [[1,4,2,1],[3,2,0,1]]

# Násobení A*B
ab = numpy.dot(a,b)

# Násobení A*B*C
abc = numpy.dot(ab,c)

detabc = numpy.linalg.det(abc)

# Determinant ABC
print(round(detabc,3))