Click or drag to resize

FloatComplexMatrix Constructor

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