DoubleMatrixDense Method

Overload List

Dense(Double) Creates a dense DoubleMatrix instance having the same size and data of the specified two-dimensional array.
Dense(Int32, Int32) Creates a dense DoubleMatrix instance having the specified size, and assigns zero to each matrix entry.
Dense(Int32, Int32, IEnumerableDouble) Creates a dense DoubleMatrix instance having the specified size, and assigns data to entries assuming ColMajor ordering.
Dense(Int32, Int32, Double) Creates a dense DoubleMatrix instance having the specified size, and assigns the same value to each matrix entry.
Dense(Int32, Int32, Double) Creates a dense DoubleMatrix instance having the specified size, and assigns data to entries assuming ColMajor ordering.
Dense(Int32, Int32, IEnumerableDouble, StorageOrder) Creates a dense DoubleMatrix instance having the specified size, and assigns data to entries applying the given storage order.
Dense(Int32, Int32, Double, StorageOrder) Creates a dense DoubleMatrix instance having the specified size, and assigns data to entries applying the given storage order.
Dense(Int32, Int32, Double, Boolean) Creates a dense DoubleMatrix instance having the specified size, and assigns data to entries, possibly preventing copying operations before creation.

See Also