Add 'shape' property to the Matrix class

This commit is contained in:
Kulshekhar Kabra 2017-02-14 15:36:33 +05:30 committed by GitHub
parent 8e2708ca21
commit 282fc7e05b

View File

@ -269,6 +269,8 @@ export class Vector {
export class Matrix {
T: Matrix;
shape: number[];
/**
* @method constructor
@ -586,4 +588,4 @@ export class Matrix {
public toArray (): number[][];
}
export class BLAS {}
export class BLAS {}