コード例 #1
0
 /// <summary>
 /// Returns a string representations of all cells; no alignment considered.
 /// </summary>
 /// <param name="matrix">
 /// The matrix.
 /// </param>
 /// <returns>
 /// A string representations of all cells.
 /// </returns>
 protected override string[][] Format(AbstractMatrix2D matrix)
 {
     return(Format((DoubleMatrix2D)matrix));
 }
コード例 #2
0
 /// <summary>
 /// Returns a string representations of all cells; no alignment considered.
 /// </summary>
 /// <param name="matrix"></param>
 /// <returns></returns>
 protected override String[][] Format(AbstractMatrix2D matrix)
 {
     return(this.Format((ObjectMatrix2D)matrix));
 }
コード例 #3
0
 /// <summary>
 /// Returns a string representation of the given matrix.
 /// </summary>
 /// <param name="matrix">
 /// The matrix to convert.
 /// </param>
 /// <returns>
 /// A string representation of the given matrix.
 /// </returns>
 protected override string ToString(AbstractMatrix2D matrix)
 {
     return(this.ToString((DoubleMatrix2D)matrix));
 }
コード例 #4
0
 /// <summary>
 /// Returns a string representation of the given matrix.
 /// </summary>
 /// <param name="matrix">the matrix to convert.</param>
 /// <returns></returns>
 protected override String ToString(AbstractMatrix2D matrix)
 {
     return(this.ToString((ObjectMatrix2D)matrix));
 }