Skip to content

udaravima/Matrixes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

57d7cb9 · Nov 20, 2022

History

4 Commits
Nov 20, 2022
Nov 20, 2022

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