Example #1
0
 public static string ToString(this double[] matrix, string format, IMatrixFormatProvider provider)
 {
     return(MatrixFormatter.Format(format, matrix, provider));
 }
Example #2
0
 public static string ToString(this double[] array, string format)
 {
     return(MatrixFormatter.Format(format, array, DefaultArrayFormatProvider.CurrentCulture));
 }
Example #3
0
 public static string ToString(this double[][] matrix, string format)
 {
     return(MatrixFormatter.Format(format, matrix, DefaultMatrixFormatProvider.CurrentCulture));
 }