Reads a complex vector from 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 Vector<Complex<T>> ReadComplexVector<T>(
string path,
JsonOptions options = null
)
Public Shared Function ReadComplexVector(Of T) (
path As String,
Optional options As JsonOptions = Nothing
) As Vector(Of Complex(Of T))
public:
generic<typename T>
static Vector<Complex<T>>^ ReadComplexVector(
String^ path,
JsonOptions^ options = nullptr
)
static member ReadComplexVector :
path : string *
?options : JsonOptions
(* Defaults:
let _options = defaultArg options null
*)
-> Vector<Complex<'T>>
Parameters
- path
- Type: SystemString
The path 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.
Return Value
Type:
VectorComplexTThe data frame that was read from the file
pointed to by
path.
The element type of the stored vector does not have
to match the element type of the returned vector.
However, casting values from this type to
type T must succeed.
Numerical Libraries
Supported in: 6.0
Reference