Overload List

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

See Also