Gets or sets the value of the time series at a given index.
Namespace:
Meta.Numerics.Statistics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public double this[
int index
] { get; set; }
Public Default Property Item (
index As Integer
) As Double
Get
Set
public:
virtual property double default[int index] {
double get (int index) sealed;
void set (int index, double value) sealed;
}
abstract Item : float with get, set
override Item : float with get, set
Parameters
- index
- Type: SystemInt32
The index of the value.
Return Value
Type:
DoubleThe value.
Implements
IListTItemInt32See Also