Click or drag to resize

SparseVectorTryParse(String, IFormatProvider, SparseVector) Method

Converts the string representation of a complex sparse vector to double-precision sparse vector equivalent. A return value indicates whether the conversion succeeded or failed.

Namespace: Altaxo.Calc.LinearAlgebra.Complex32
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static bool TryParse(
	string value,
	IFormatProvider formatProvider,
	out SparseVector result
)

Parameters

value  String
A string containing a complex vector to convert.
formatProvider  IFormatProvider
An IFormatProvider that supplies culture-specific formatting information about value.
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