2

用于矩阵并置的此类 MATLAB 运算的 math.net 等价物是什么?

A = [2 2; 3 3]
B = [4 4; 5 5]
C = [A B]
D = [A; B]

是否有将 MATLAB/NUMPY 与 Math.net 进行比较的备忘单?这可能对我将来有帮助。谢谢。

4

2 回答 2

3

找到了一个比较养眼的解决方案:

let C = A.append(B)
let D = B.stack(D)

感谢帮助。

于 2013-11-15T10:00:59.333 回答
0

在这里查看文档: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)
于 2013-11-15T09:41:35.823 回答