 | DoubleVectorParse(String) Method |
Returns a new DoubleVector instance from a given string representation.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleVector Parse(
string s
)
Public Shared Function Parse (
s As String
) As DoubleVector
public:
static DoubleVector^ Parse(
String^ s
)
static member Parse :
s : string -> DoubleVector
Parameters
- s String
- A string representation of a vector.
Return Value
DoubleVector
Remarks
Acceptable string representations are of the form [ v1 v2 v3 ... ]
or v1 v2 v3 .... For example, [ 4.3 23.4 234.3 -21.2 ] or
400.32 9.42 4.4542.
See Also