MathNet.Numerics.LinearAlgebra.Single.DenseMatrix.OfMatrix C# (CSharp) 메소드

OfMatrix() 공개 정적인 메소드

Create a new dense matrix as a copy of the given other matrix. This new matrix will be independent from the other matrix. A new memory block will be allocated for storing the matrix.
public static OfMatrix ( Matrix matrix ) : DenseMatrix
matrix Matrix
리턴 DenseMatrix
        public static DenseMatrix OfMatrix(Matrix<float> matrix)
        {
            return new DenseMatrix(DenseColumnMajorMatrixStorage<float>.OfMatrix(matrix.Storage));
        }