Reads the one-dimensional array with the specified name in the file.
Namespace: Extreme.DataAssembly: Extreme.Data (in Extreme.Data.dll) Version: 1.0.16170.0 (1.0.16170.0)
public Vector<T> ReadVector<T>(
string name,
bool strict = false
)
Public Function ReadVector(Of T) (
name As String,
Optional strict As Boolean = false
) As Vector(Of T)
public:
generic<typename T>
Vector<T>^ ReadVector(
String^ name,
bool strict = false
)
member ReadVector :
name : string *
?strict : bool
(* Defaults:
let _strict = defaultArg strict false
*)
-> Vector<'T>
Parameters
- name
- Type: SystemString
The name of the matrix to read. - strict (Optional)
- Type: SystemBoolean
Specifies whether the element type
should be matched exactly (, the default), or whether
conversions are allowed ().
Type Parameters
- T
- The element type of the vector.
Return Value
Type:
VectorTA vector containing the data.
Numerical Libraries
Supported in: 6.0
Reference