Overload List

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

See Also