Click or drag to resize

DenseVectorParse Method

Creates a double dense vector based on a string. The string can be in the following formats (without the quotes): 'n', 'n,n,..', '(n,n,..)', '[n,n,...]', where n is a double.

Namespace: Altaxo.Calc.LinearAlgebra.Double
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static DenseVector Parse(
	string value,
	IFormatProvider formatProvider = null
)

Parameters

value  String
the string to parse.
formatProvider  IFormatProvider  (Optional)
An IFormatProvider that supplies culture-specific formatting information.

Return Value

DenseVector
A double dense vector containing the values specified by the given string.
See Also