CompVisJS-Matrix

メソッド一覧

変数の定義
A,B:Matrixオブジェクト
L:二次元配列

const Matrix = CompVis.Matrix; let L_A = [ [1,2], [3,4] ]; let L_B = [ [3,1], [4,2] ]; let A = new Matrix(L_A); let B = new Matrix(L_B); console.log(A.pro(B)); console.log(A._inverse);