Matrix Arithmetic and its inverse 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)
还没有任何评论哟~
