Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
udaravima authored Nov 20, 2022
1 parent 605a00b commit e0935b4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,28 @@ Calculation with Matrixes
* Determinant
* Adjoint
* Inverse

## How To:
* import class
```
from .Matrix import Matrix
```
* create matrix
```
matrix = [
[a , b],
[c , d]
]
```
* create the object
```
obj1 = Matrix(matrix)
```
* Tinker with built in funtions
```
obj1.multiply(2)
obj1.multiply(obj2)
obj1.determinant()
obj1.adjoint()
obj1.inverse()
```

0 comments on commit e0935b4

Please sign in to comment.