Click or drag to resize

DoubleMatrix Constructor

Overload List
 NameDescription
Public methodDoubleMatrix An undefined matrix. Must be resized before using.
Public methodDoubleMatrix(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(Double) Constructs a DoubleMatrix instance initialized with data in a given two-dimensional array.
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 methodCode exampleDoubleMatrix(String) Constructs a DoubleMatrix instance from a formatted string.
Public methodCode exampleDoubleMatrix(TextReader) Constructs a DoubleMatrix instance from the given text reader.
Public methodDoubleMatrix(Int32, Int32) Constructs a DoubleMatrix instance with the specifed number of rows and columns.
Public methodCode exampleDoubleMatrix(String, Char) Constructs a DoubleMatrix instance from a formatted string with a specified delimiter.
Public methodCode exampleDoubleMatrix(String, NumberStyles) Constructs a DoubleMatrix instance from a formatted string and a NumberStyles object.
Public methodCode exampleDoubleMatrix(TextReader, NumberStyles) Constructs a DoubleMatrix instance from the given text reader.
Public methodCode exampleDoubleMatrix(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 methodCode exampleDoubleMatrix(String, NumberStyles, Char) Constructs a DoubleMatrix instance from a formatted string with a specified delimiter and style.
Public methodDoubleMatrix(Int32, Int32, RandomNumberStream, IRandomNumberDistributionDouble) 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, Double, StorageType) Constructs a DoubleMatrix instance of the specified dimensions, initialized with the values in a given array.
Public methodCode exampleDoubleMatrix(Int32, Int32, TextReader, Char) Constructs a DoubleMatrix instance from a given text reader with a specified delimiter.
Public methodCode exampleDoubleMatrix(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 methodCode exampleDoubleMatrix(Int32, Int32, TextReader, NumberStyles, Char) Constructs a DoubleMatrix instance from a given text reader with specified delimiter and styles.
Public methodCode exampleDoubleMatrix(Int32, Int32, String, NumberStyles, Char) Constructs a DoubleMatrix instance from a formatted string with a specified delimiter and style.
Top
See Also