SparseVectorTryParse(String, SparseVector) Method |
Converts the string representation of a real sparse vector to float-precision sparse vector equivalent.
A return value indicates whether the conversion succeeded or failed.
Namespace: Altaxo.Calc.LinearAlgebra.SingleAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static bool TryParse(
string value,
out SparseVector result
)
Parameters
- value String
-
A string containing a real vector to convert.
- result SparseVector
-
The parsed value.
Return Value
Boolean
If the conversion succeeds, the result will contain a complex number equivalent to value.
Otherwise the result will be
null.
See Also