JsonStream.ReadComplexMatrix<T> Method

Reads a complex matrix from the stream.

Definition

Namespace: Extreme.Data.Json
Assembly: Extreme.Data.Json (in Extreme.Data.Json.dll) Version: 3.1.1
C#
public override Matrix<Complex<T>> ReadComplexMatrix<T>(
	bool strict
)

Parameters

strict  Boolean
Specifies whether the element type should be matched exactly (true), or whether conversions are allowed (false).

Type Parameters

T
The type of the real and imaginary parts of the element type.

Return Value

Matrix<Complex<T>>
The matrix that was read from the stream.

See Also