Skip to content

udaravima/Matrixes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

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()

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages