Exemplo n.º 1
0
 /// <summary>
 /// Rounds matrix entries to the nearest integeral value.
 /// </summary>
 /// <param name="decimals"></param>
 /// <returns></returns>
 public virtual Matrix Round(int decimals)
 {
     return(new Matrix(MatrixFunctions.Round(this.InnerMatrix, decimals)));
 }