Namespaces

Types

Type DenseVector

Namespace MathNet.Numerics.LinearAlgebra.Double

Parent Vector

A vector using dense storage.

Methods

Properties

Public static methods

DenseVector Parse(string value, IFormatProvider formatProvider)

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.
Parameters
return DenseVector A double dense vector containing the values specified by the given string.
string value the string to parse.
IFormatProvider formatProvider An IFormatProvider that supplies culture-specific formatting information.

DenseVector Parse(string value)

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.
Parameters
return DenseVector A double dense vector containing the values specified by the given string.
string value The string to parse.

bool TryParse(string value, IFormatProvider formatProvider, DenseVector& result)

Parameters
return bool
string value
IFormatProvider formatProvider
DenseVector& result

bool TryParse(string value, DenseVector& result)

Parameters
return bool
string value
DenseVector& result

Public properties

int Count get;

return int

double Item get; set;

Gets or sets the value at the given index.
return double