Reads the vector with the specified name from a file.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static Vector<T> ReadVector<T>(
string path,
string name,
bool strict = false
)
Public Shared Function ReadVector(Of T) (
path As String,
name As String,
Optional strict As Boolean = false
) As Vector(Of T)
public:
generic<typename T>
static Vector<T>^ ReadVector(
String^ path,
String^ name,
bool strict = false
)
static member ReadVector :
path : string *
name : string *
?strict : bool
(* Defaults:
let _strict = defaultArg strict false
*)
-> Vector<'T>
Parameters
- path
- Type: SystemString
The file to read from. - name
- Type: SystemString
The name of the vector to read. - strict (Optional)
- Type: SystemBoolean
Specifies whether the element type
should be matched exactly (), or whether
conversions are allowed ().
Type Parameters
- T
Return Value
Type:
VectorTThe vector that was read from the file.
Reference