示例#1
0
文件: daMatrix.cs 项目: htna/explsolv
 //public daMatrix Inverse()																						{ return new daMatrix(val.Inverse()); }
 public daMatrix KroneckerProduct(_daMatrix other)
 {
     return(new daMatrix(val.KroneckerProduct(other)));
 }