コード例 #1
0
ファイル: MatrixXD.cs プロジェクト: modios/EigenCore
 public MatrixXD Plus(MatrixXD other)
 {
     double[] outMatrix = new double[Rows * Cols];
     EigenDenseUtilities.Plus(
         GetValues(),
         Rows,
         Cols,
         other.GetValues(),
         other.Rows,
         other.Cols,
         outMatrix);
     return(new MatrixXD(outMatrix, Rows, Cols));
 }