MathNet.Numerics.LinearAlgebra.Complex32.DenseMatrix.OfColumnArrays C# (CSharp) Method

OfColumnArrays() public static method

Create a new dense matrix as a copy of the given column arrays. This new matrix will be independent from the arrays. A new memory block will be allocated for storing the matrix.
public static OfColumnArrays ( ) : DenseMatrix
return DenseMatrix
        public static DenseMatrix OfColumnArrays(params Complex32[][] columns)
        {
            return new DenseMatrix(DenseColumnMajorMatrixStorage<Complex32>.OfColumnArrays(columns));
        }

Same methods

DenseMatrix::OfColumnArrays ( IEnumerable columns ) : DenseMatrix