Пример #1
0
 /// <summary>
 /// Converts a given cell to a String; no alignment considered.
 /// <summary>
 protected override String Form(AbstractMatrix1D matrix, int index, Former formatter)
 {
     return(this.Form((DoubleMatrix1D)matrix, index, formatter));
 }
 protected abstract String form( AbstractMatrix1D matrix, int index, IFormer formatter );
 protected String[] formatRow( AbstractMatrix1D vector )
 {
     IFormer formatter = null;
     formatter = factory.create( this.format );
 }
Пример #4
0
 /// <summary>
 /// Converts a given cell to a String; no alignment considered.
 /// </summary>
 /// <param name="matrix"></param>
 /// <param name="index"></param>
 /// <returns></returns>
 protected String Form(AbstractMatrix1D matrix, int index)
 {
     return(this.Form((ObjectMatrix1D)matrix, index));
 }