コード例 #1
0
 /// <summary>
 /// Returns a new matrix consists of the specified row indexes.
 /// </summary>
 public virtual Matrix ExtractRows(int[] rows)
 {
     return(new Linears.Matrix(MatrixFunctions.ExtractRows(this.InnerMatrix, rows)));
 }
コード例 #2
0
 /// <summary>
 /// Returns a new matrix consists of the specified row range.
 /// </summary>
 public virtual Matrix ExtractRows(int startRow, int endRow)
 {
     return(new Linears.Matrix(MatrixFunctions.ExtractRows(this.InnerMatrix, startRow, endRow)));
 }