Click or drag to resize

SparseVectorParse Method

Creates a float sparse 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 float.

Namespace: Altaxo.Calc.LinearAlgebra.Single
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static SparseVector 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

SparseVector
A float sparse vector containing the values specified by the given string.
See Also