Advertisement

Matrix Arithmetic and its inverse matrix

阅读量:

矩阵相加运算与矩阵相乘运算

Inverse of a matrix

  • 矩阵运算脚本文件
复制代码
 function Matrix(/* Array */a) {

    
 	if (typeof a == "undefined") {
    
 		a = [];
    
 	}
    
 	this._a = a;
    
 	this.row = this._a.length;
    
 	this.col = (typeof this._a[0] == "undefined") ? 0 : this._a[0].length;
    
 }
    
  
    
 Matrix.prototype.init = fun

全部评论 (0)

还没有任何评论哟~