Exemple #1
0
 /// <summary>
 /// Creats a new SimpleMatrix which is identical to the original.
 /// </summary>
 /// <param name="orig"> The matrix which is to be copied. Not modified. </param>
 public SimpleMatrix(SimpleMatrix <W> orig)
 {
     setMatrix(orig.mat.copy <Matrix>());
 }