Reads a complex matrix from a stream in fixed-width text format.
Namespace: Extreme.Data.TextAssembly: Extreme.Data (in Extreme.Data.dll) Version: 1.0.16170.0 (1.0.16328.0)
public static Matrix<Complex<T>> ReadComplexMatrix<T>(
Stream stream,
FixedWidthTextOptions options
)
Public Shared Function ReadComplexMatrix(Of T) (
stream As Stream,
options As FixedWidthTextOptions
) As Matrix(Of Complex(Of T))
public:
generic<typename T>
static Matrix<Complex<T>>^ ReadComplexMatrix(
Stream^ stream,
FixedWidthTextOptions^ options
)
static member ReadComplexMatrix :
stream : Stream *
options : FixedWidthTextOptions -> Matrix<Complex<'T>>
Parameters
- stream
- Type: System.IOStream
A stream. - options
- Type: Extreme.Data.TextFixedWidthTextOptions
A FixedWidthTextOptions object
that specifies the options to use when reading the file.
Type Parameters
- T
- The element type of the matrix.
Return Value
Type:
MatrixComplexTThe matrix that was read from the stream
pointed to by
stream.
The element type of the stored matrix does not have
to match the element type of the returned matrix.
However, casting values from this type to
type T must succeed.
Numerical Libraries
Supported in: 6.0
Reference