Matlab File.Read Vector Method
Definition
Namespace: Numerics.NET.Data.Matlab
Assembly: Numerics.NET.Data (in Numerics.NET.Data.dll) Version: 4.0.3
Assembly: Numerics.NET.Data (in Numerics.NET.Data.dll) Version: 4.0.3
Overload List
Read | Reads a vector from the specified Matlab® data file. |
Read | Reads a vector from the specified Matlab® data file. |
Read | Reads the vector with the specified name from a stream. |
Read | Reads the vector with the specified name from a Matlab® data file. |
ReadVector<T>(Stream, Boolean)
Reads a vector from the specified Matlab® data file.
public static Vector<T> ReadVector<T>(
Stream stream,
bool strict = true
)
Parameters
- stream Stream
- The stream to read from.
- strict Boolean (Optional)
- Specifies whether the element type should be matched exactly (true, the default), or whether conversions are allowed (false).
Type Parameters
- T
Return Value
Vector<T>The vector that was read from the stream.
ReadVector<T>(String, Boolean)
Reads a vector from the specified Matlab® data file.
public static Vector<T> ReadVector<T>(
string path,
bool strict = true
)
Parameters
- path String
- The file to read from.
- strict Boolean (Optional)
- Specifies whether the element type should be matched exactly (true, the default), or whether conversions are allowed (false).
Type Parameters
- T
Return Value
Vector<T>The vector that was read from the file.
ReadVector<T>(Stream, String, Boolean)
Reads the vector with the specified name from a stream.
public static Vector<T> ReadVector<T>(
Stream stream,
string name,
bool strict = true
)
Parameters
- stream Stream
- The stream to read from.
- name String
- The name of the vector to read.
- strict Boolean (Optional)
- Specifies whether the element type should be matched exactly (true, the default), or whether conversions are allowed (false).
Type Parameters
- T
Return Value
Vector<T>The vector that was read from the stream.
ReadVector<T>(String, String, Boolean)
Reads the vector with the specified name from a Matlab® data file.
public static Vector<T> ReadVector<T>(
string path,
string name,
bool strict = true
)
Parameters
- path String
- The file to read from.
- name String
- The name of the vector to read.
- strict Boolean (Optional)
- Specifies whether the element type should be matched exactly (true, the default), or whether conversions are allowed (false).
Type Parameters
- T
Return Value
Vector<T>The vector that was read from the file.