Writes a complex matrix to a stream in JSON format.
Namespace:
Extreme.Data.Json
Assembly:
Extreme.Data.Json (in Extreme.Data.Json.dll) Version: 3.1.0
public static void Write<T>(
Stream stream,
Matrix<Complex<T>> matrix,
JsonOptions options = null
)
Public Shared Sub Write(Of T) (
stream As Stream,
matrix As Matrix(Of Complex(Of T)),
Optional options As JsonOptions = Nothing
)
public:
generic<typename T>
static void Write(
Stream^ stream,
Matrix<Complex<T>>^ matrix,
JsonOptions^ options = nullptr
)
static member Write :
stream : Stream *
matrix : Matrix<Complex<'T>> *
?options : JsonOptions
(* Defaults:
let _options = defaultArg options null
*)
-> unit
Parameters
- stream
- Type: System.IOStream
A stream. - matrix
- Type: Extreme.MathematicsMatrixComplexT
The matrix to write to the stream. - options (Optional)
- Type: Extreme.Data.JsonJsonOptions
A JsonOptions object
that specifies the options to use when reading the file.
Type Parameters
- T
- The element type of the matrix.
Reference