コード例 #1
0
 /// <summary>
 /// Creates a deep copy of the matrix using unsafe code. Might provide better performance with large matrices.
 /// </summary>
 public virtual Matrix CreateCopyUnsafe()
 {
     return(new Matrix(MatrixFunctions.CreateCopyUnsafe(this.InnerMatrix)));
 }