Click or drag to resize

DoubleComplexMatrix Constructor

Overload List
 NameDescription
Public methodDoubleComplexMatrix An undefined matrix. Must be resized before using.
Public methodDoubleComplexMatrix(DoubleComplex) Constructs a DoubleComplexMatrix instance initialized with data in a given two-dimensional array.
Public methodDoubleComplexMatrix(DoubleComplexMatrix) Constructs a deep copy of a DoubleComplexMatrix.
Public methodDoubleComplexMatrix(DoubleComplexVector) Constructs a n x 1 DoubleComplexMatrix instance from a given vector.
Public methodCode exampleDoubleComplexMatrix(String) Constructs a DoubleComplexMatrix instance from a formatted string.
Public methodCode exampleDoubleComplexMatrix(TextReader) Constructs a DoubleComplexMatrix instance from the given text reader.
Public methodDoubleComplexMatrix(DataRow, 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.
Public methodDoubleComplexMatrix(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.
Public methodDoubleComplexMatrix(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.
Public methodDoubleComplexMatrix(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.
Public methodDoubleComplexMatrix(DoubleMatrix, DoubleMatrix) Constructs a DoubleComplexMatrix instance from a matrix of real parts and a matrix of imaginary parts.
Public methodDoubleComplexMatrix(Int32, Int32) Constructs a DoubleComplexMatrix instance with the specifed number of rows and columns.
Public methodCode exampleDoubleComplexMatrix(String, NumberStyles) Constructs a DoubleComplexMatrix instance from a formatted string and a NumberStyles object.
Public methodCode exampleDoubleComplexMatrix(TextReader, NumberStyles) Returns a new DoubleComplexMatrix instance from the given text reader.
Public methodDoubleComplexMatrix(Int32, Int32, DoubleComplex) Constructs a DoubleComplexMatrix instance of the specifed dimensions and initializes all matrix element values to the given value.
Public methodCode exampleDoubleComplexMatrix(Int32, Int32, DoubleComplexDataBlock) Constructs a DoubleComplexMatrix instance from a data block.
Public methodDoubleComplexMatrix(Int32, Int32, RandomNumberGenerator) Constructs a DoubleComplexMatrix instance from a random number generator.
Public methodDoubleComplexMatrix(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.
Public methodDoubleComplexMatrix(Int32, Int32, DoubleComplex, StorageType) Constructs a DoubleComplexMatrix instance of the specified dimensions, initialized with the values in a given array.
Public methodDoubleComplexMatrix(Int32, Int32, DoubleComplexDataBlock, Int32, Int32) Constructs a DoubleComplexMatrix instance from a data block with the given row and column strides.
Top
See Also