CompVisJS-Matrix
Home
API Home
メソッド一覧
変数の定義
A,B:Matrixオブジェクト
L:二次元配列
CompVis.Matrix.matrix [set <- L, get]
CompVis.Matrix.size
A.pro(B)
CompVis.Matrix._det
CompVis.Matrix._inverse
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);