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 e0935b4 commit 57d7cb9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@ Calculation with Matrixes
* Inverse

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

0 comments on commit 57d7cb9

Please sign in to comment.