Click or drag to resize

DenseVectorTryParse(String, IFormatProvider, DenseVector) Method

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

Namespace: Altaxo.Calc.LinearAlgebra.Double
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 DenseVector result
)

Parameters

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