Click or drag to resize

SparseVectorParse Method

Creates a double 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 Complex32.

Namespace: Altaxo.Calc.LinearAlgebra.Complex32
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 double sparse vector containing the values specified by the given string.
See Also