Overload List
| Name | Description | |
|---|---|---|
| DoubleComplexMatrix()()() |
An undefined matrix. Must be resized before using.
| |
| DoubleComplexMatrix(array<DoubleComplex,2>[,](,)[,]) |
Constructs a DoubleComplexMatrix instance initialized with data in a
given two-dimensional array.
| |
| DoubleComplexMatrix(DoubleComplexMatrix) |
Constructs a deep copy of a DoubleComplexMatrix.
| |
| DoubleComplexMatrix(DoubleComplexVector) |
Constructs a n x 1 DoubleComplexMatrix instance from a given vector.
| |
| DoubleComplexMatrix(TextReader) |
Constructs a DoubleComplexMatrix instance from the given text
reader.
| |
| DoubleComplexMatrix(String) |
Constructs a DoubleComplexMatrix instance from a formatted string.
| |
| DoubleComplexMatrix(DoubleMatrix, DoubleMatrix) |
Constructs a DoubleComplexMatrix instance from a matrix of real parts and a
matrix of imaginary parts.
| |
| DoubleComplexMatrix(array<DataRow>[]()[], array<DataRow>[]()[]) |
Constructs a DoubleComplexMatrix instance from two data row arrays.
The real parts are specified with the first data row array and the
imaginary parts by the second data row array.
| |
| DoubleComplexMatrix(DataRowCollection, DataRowCollection) |
Constructs a DoubleComplexMatrix instance from two data row collections.
The real parts are specified with the first data row collection, and the
imaginary parts by the second data row collection.
| |
| DoubleComplexMatrix(DataTable, DataTable) |
Constructs a DoubleComplexMatrix instance from the data tables. The real
parts are specified with the first data table, and the imaginary parts by
the second data table.
| |
| DoubleComplexMatrix(DataView, DataView) |
Constructs a DoubleComplexMatrix instance from the data views. The real
parts are specified with the first data view, and the imaginary parts by
the second data view.
| |
| DoubleComplexMatrix(Int32, Int32) |
Constructs a DoubleComplexMatrix instance with the specifed number of rows and
columns.
| |
| DoubleComplexMatrix(TextReader, NumberStyles) |
Returns a new DoubleComplexMatrix instance from the given text reader.
| |
| DoubleComplexMatrix(String, NumberStyles) |
Constructs a DoubleComplexMatrix instance from a formatted string and a
NumberStyles object.
| |
| DoubleComplexMatrix(Int32, Int32, DoubleComplex) |
Constructs a DoubleComplexMatrix instance of the specifed dimensions and
initializes all matrix element values to the given value.
| |
| DoubleComplexMatrix(Int32, Int32, DoubleComplexDataBlock) |
Constructs a DoubleComplexMatrix instance from a data block.
| |
| DoubleComplexMatrix(Int32, Int32, RandomNumberGenerator) |
Constructs a DoubleComplexMatrix instance from a random number generator.
| |
| DoubleComplexMatrix(Int32, Int32, DoubleComplex, DoubleComplex) |
Constructs a DoubleComplexMatrix 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.
| |
| DoubleComplexMatrix(Int32, Int32, array<DoubleComplex>[]()[], StorageType) |
Constructs a DoubleComplexMatrix instance of the specified dimensions,
initialized with the values in a given array.
| |
| DoubleComplexMatrix(Int32, Int32, DoubleComplexDataBlock, Int32, Int32) |
Constructs a DoubleComplexMatrix instance from a data block with the given row and column strides.
|