Skip to content

Latest commit

 

History

History
34 lines (32 loc) · 435 Bytes

README.md

File metadata and controls

34 lines (32 loc) · 435 Bytes

Matrixes

Calculation with Matrixes

Features

  • Matrix Multiplication
  • Transpose
  • Determinant
  • Adjoint
  • Inverse

How To:

  • import the class
from .Matrix import Matrix
  • create a matrix
matrix = [
  [a , b],
  [c , d]
]
  • create a object
obj1 = Matrix(matrix)
  • Tinker with the obkect and built in funtions
obj1.multiply(2)
obj1.multiply(obj2)
obj1.determinant()
obj1.adjoint()
obj1.inverse()