C# Класс YAMP.RangeValue

A special kind of matrix which is a range (vector).
Наследование: MatrixValue
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Clone ( ) : MatrixValue

Clones the given range.

Deserialize ( byte content ) : Value

Tries to create a new instance from the given bytes.

RangeValue ( ) : System

Standard operator - Start at 1, Step 1 and till the end of the matrix.

RangeValue ( double start, double step ) : System

Creates a new range value from some point to the end of the matrix.

RangeValue ( double start, double end, double step ) : System

Creates a new range value with the specified steps.

Serialize ( ) : byte[]

Tries to serialize the contents into bytes.

this ( int j, int i ) : ScalarValue

Gets or sets an entry in the range.

Приватные методы

Метод Описание
GetValue ( int i ) : ScalarValue

Описание методов

Clone() публичный Метод

Clones the given range.
public Clone ( ) : MatrixValue
Результат MatrixValue

Deserialize() публичный Метод

Tries to create a new instance from the given bytes.
public Deserialize ( byte content ) : Value
content byte The binary content.
Результат Value

RangeValue() публичный Метод

Standard operator - Start at 1, Step 1 and till the end of the matrix.
public RangeValue ( ) : System
Результат System

RangeValue() публичный Метод

Creates a new range value from some point to the end of the matrix.
public RangeValue ( double start, double step ) : System
start double The starting value.
step double The step value.
Результат System

RangeValue() публичный Метод

Creates a new range value with the specified steps.
public RangeValue ( double start, double end, double step ) : System
start double The starting value.
end double The ending value.
step double The step value.
Результат System

Serialize() публичный Метод

Tries to serialize the contents into bytes.
public Serialize ( ) : byte[]
Результат byte[]

this() публичный Метод

Gets or sets an entry in the range.
public this ( int j, int i ) : ScalarValue
j int The 1-based row-index.
i int The 1-based column-index.
Результат ScalarValue