Overload List

  NameDescription
DoubleMatrix()()()
An undefined matrix. Must be resized before using.
DoubleMatrix(DoubleMatrix)
Constructs a deep copy of a DoubleMatrix.
DoubleMatrix(DoubleVector)
Constructs a n x 1 DoubleMatrix instance from a given vector.
DoubleMatrix(array<DataRow>[]()[])
Constructs a DoubleMatrix instance whose values are derived from the entire contents of the given array of rows.
DoubleMatrix(DataRowCollection)
Constructs a DoubleMatrix instance whose values are derived from the entire contents of the given row collection.
DoubleMatrix(DataTable)
Constructs a DoubleMatrix instance whose values are derived from the entire contents of the given data table.
DoubleMatrix(DataView)
Constructs a DoubleMatrix instance whose values are derived from the entire contents of the given data view.
DoubleMatrix(array<Double,2>[,](,)[,])
Constructs a DoubleMatrix instance initialized with data in a given two-dimensional array.
DoubleMatrix(TextReader)
Constructs a DoubleMatrix instance from the given text reader.
DoubleMatrix(String)
Constructs a DoubleMatrix instance from a formatted string.
DoubleMatrix(Int32, Int32)
Constructs a DoubleMatrix instance with the specifed number of rows and columns.
DoubleMatrix(TextReader, NumberStyles)
Constructs a DoubleMatrix instance from the given text reader.
DoubleMatrix(String, Char)
Constructs a DoubleMatrix instance from a formatted string with a specified delimiter.
DoubleMatrix(String, NumberStyles)
Constructs a DoubleMatrix instance from a formatted string and a NumberStyles object.
DoubleMatrix(Int32, Int32, DoubleDataBlock)
Constructs a DoubleMatrix instance from a data block.
DoubleMatrix(Int32, Int32, RandomNumberGenerator)
Constructs a DoubleMatrix instance from a random number generator.
DoubleMatrix(Int32, Int32, Double)
Constructs a DoubleMatrix instance of the specifed dimensions and initializes all matrix element values to the given value.
DoubleMatrix(String, NumberStyles, Char)
Constructs a DoubleMatrix instance from a formatted string with a specified delimiter and style.
DoubleMatrix(Int32, Int32, RandomNumberStream, IRandomNumberDistribution<(Of <(Double>)>))
Constructs a DoubleMatrix instance from a random number generator.
DoubleMatrix(Int32, Int32, Double, Double)
Constructs a DoubleMatrix instance of the specifed dimensions. Values are initialized starting with a given initial value, incremented by the specified amount for each element in the matrix.
DoubleMatrix(Int32, Int32, array<Double>[]()[], StorageType)
Constructs a DoubleMatrix instance of the specified dimensions, initialized with the values in a given array.
DoubleMatrix(Int32, Int32, TextReader, Char)
Constructs a DoubleMatrix instance from a given text reader with a specified delimiter.
DoubleMatrix(Int32, Int32, String, Char)
Constructs a DoubleMatrix instance from a formatted string with a specified delimiter.
DoubleMatrix(Int32, Int32, DoubleDataBlock, Int32, Int32)
Constructs a DoubleMatrix instance from a data block with the given row and column strides.
DoubleMatrix(Int32, Int32, TextReader, NumberStyles, Char)
Constructs a DoubleMatrix instance from a given text reader with specified delimiter and styles.
DoubleMatrix(Int32, Int32, String, NumberStyles, Char)
Constructs a DoubleMatrix instance from a formatted string with a specified delimiter and style.

See Also