Writes a complex vector to a file in JSON format.
Namespace: Extreme.Data.JsonAssembly: Extreme.Data.Json (in Extreme.Data.Json.dll) Version: 1.0.16157.0 (1.0.16157.0)
public static void Write<T>(
string path,
Vector<Complex<T>> vector,
JsonOptions options = null
)
Public Shared Sub Write(Of T) (
path As String,
vector As Vector(Of Complex(Of T)),
Optional options As JsonOptions = Nothing
)
public:
generic<typename T>
static void Write(
String^ path,
Vector<Complex<T>>^ vector,
JsonOptions^ options = nullptr
)
static member Write :
path : string *
vector : Vector<Complex<'T>> *
?options : JsonOptions
(* Defaults:
let _options = defaultArg options null
*)
-> unit
Parameters
- path
- Type: SystemString
The path to the file. - vector
- Type: Extreme.MathematicsVectorComplexT
The vector to write to the file. - 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 vector.
Numerical Libraries
Supported in: 6.0
Reference