 | DoubleVector(String) Constructor |
Constructs a DoubleVector instance from a given string representation.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DoubleVector(
string s
)
Public Sub New (
s As String
)
public:
DoubleVector(
String^ s
)
new :
s : string -> DoubleVector
Parameters
- s String
- A string representation of a vector.
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