RdataFile.ReadVectors Method

Definition

Namespace: Extreme.Data.R
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0

Overload List

ReadVectors<T>(Stream, IEnumerable<String>) Reads the specified vectors from a stream.
ReadVectors<T>(String, IEnumerable<String>, Boolean) Reads the specified vectors from a file.

RdataFile.ReadVectors<T>(Stream, IEnumerable<String>)

Reads the specified vectors from a stream.
C#
public static Dictionary<string, Vector<T>> ReadVectors<T>(
	Stream stream,
	IEnumerable<string> names
)

Parameters

stream  Stream
The stream to read from.
names  IEnumerable<String>
A sequence of names of the vectors to read.

Type Parameters

T

Return Value

Dictionary<String, Vector<T>>
A dictionary containing the vectors read from the stream using their name as the key.

RdataFile.ReadVectors<T>(String, IEnumerable<String>, Boolean)

Reads the specified vectors from a file.
C#
public static Dictionary<string, Vector<T>> ReadVectors<T>(
	string path,
	IEnumerable<string> names,
	bool strict = false
)

Parameters

path  String
The file to read from.
names  IEnumerable<String>
A sequence of names of the vectors to read.
strict  Boolean  (Optional)
Specifies whether the element type should be matched exactly (true), or whether conversions are allowed (false).

Type Parameters

T

Return Value

Dictionary<String, Vector<T>>
A dictionary containing the vectors read from the file using their name as the key.

See Also