Click or drag to resize

FloatVectorParse(TextReader) Method

Constructs a FloatVector instance from the given text reader.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatVector Parse(
	TextReader reader
)

Parameters

reader  TextReader
A text reader containing a string representation of a vector.

Return Value

FloatVector
Remarks
The text representation within the reader must be of the form [ v1 v2 v3 ... ]. The data elements can be in any format that is supported by Double.Parse( string ).
C#
string s = "4.522 4.32 4.56 9.94333 -0.4 5.003";
FloatVector v = FloatVector.Parse( new StringReader( s ));
See Also