Matrix.Create Method

Constructs a new matrix.

Overload List

Create<T>(T[,], ArrayMutability) Constructs a new matrix from a two-dimensional array.
Create<T>(Int32, Int32) Constructs a new matrix with the specified number of rows and columns
Create<T>(IEnumerable<T[]>, MatrixElementOrder, ArrayMutability) Constructs a new matrix from a jagged array.
Create<T>(Int32, Int32, MatrixElementOrder) Constructs a new matrix with the specified number of rows and columns
Create<T>(Int32, Int32, Func<Int32, Int32, T>, ArrayMutability) Constructs a new matrix with the specified number of rows and columns whose elements are all equal to the specified value.
Create<T>(Int32, Int32, Array2D<T>, MatrixElementOrder, ArrayMutability) Constructs a new matrix.
Create<T>(Int32, Int32, T[], MatrixElementOrder, Boolean, ArrayMutability) Constructs a new matrix of the specified dimensions using the specified values array.
Create<T>(Int32, Int32, T[], Int32, Int32, MatrixElementOrder, ArrayMutability) Constructs a new matrix.

See Also