Skip to content

Commit

Permalink
fix: add isEchelonForm and isReducedEchelonForm to typings
Browse files Browse the repository at this point in the history
  • Loading branch information
targos authored Feb 9, 2019
1 parent dee2a94 commit 690edd1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions matrix.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@ declare module 'ml-matrix' {
isVector(): boolean;
isSquare(): boolean;
isSymmetric(): boolean;
isEchelonForm(): boolean;
isReducedEchelonForm(): boolean;
set(rowIndex: number, columnIndex: number, value: number): Matrix;
get(rowIndex: number, columnIndex: number): number;
repeat(rowRep: number, colRep: number): Matrix;
Expand Down

0 comments on commit 690edd1

Please sign in to comment.