From 57d7cb9d1b56f96c058c7db7be03bc54fe970194 Mon Sep 17 00:00:00 2001 From: udaravima Date: Sun, 20 Nov 2022 10:34:06 +0530 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 438b2ee..b57d238 100644 --- a/README.md +++ b/README.md @@ -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)