We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c634c25 commit 8bb7ba9Copy full SHA for 8bb7ba9
README.md
@@ -51,6 +51,8 @@ const determinant = Math.matrix.det(M);
51
- `insertColumn(M,j,column)` - returns a matrix $M$ with additional column inserted just before _j-th_ column
52
- `swapRows(M,m,n)` - returns a matrix $M$ with _m-th_ and _n-th_ rows swapped
53
- `swapColumns(M,m,n)` - returns a matrix $M$ with _m-th_ and _n-th_ columns swapped
54
+- `getRow(M,i)` - returns _i-th_ row of a matrix $M$
55
+- `getColumn(M,j)` - returns _j-th_ column of a matrix $M$
56
57
### Testing
58
0 commit comments