用于矩阵并置的此类 MATLAB 运算的 math.net 等价物是什么?
A = [2 2; 3 3]
B = [4 4; 5 5]
C = [A B]
D = [A; B]
是否有将 MATLAB/NUMPY 与 Math.net 进行比较的备忘单?这可能对我将来有帮助。谢谢。
找到了一个比较养眼的解决方案:
let C = A.append(B)
let D = B.stack(D)
感谢帮助。
在这里查看文档:http: //nmath.sourceforge.net/doc/numerics/
我认为最好的解决方案是:
let retmatrix = Matrix(A.RowCount + B.RowCount, A.ColumnCount)
retmatrix.SetMatrix(0,A.RowCount,0,A.ColumnCount,A)
retmatrix.SetMatrix(A.RowCount,A.RowCount+B.RowCount,0,B.RowCount,B)