Method | Description | |
---|---|---|
Clone ( ) : |
Clones the given range.
|
|
Deserialize ( byte content ) : |
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 ) : |
Gets or sets an entry in the range.
|
Method | Description | |
---|---|---|
GetValue ( int i ) : |
public Deserialize ( byte content ) : |
||
content | byte | The binary content. |
return |
public RangeValue ( double start, double step ) : System | ||
start | double | The starting value. |
step | double | The step value. |
return | System |
public RangeValue ( double start, double end, double step ) : System | ||
start | double | The starting value. |
end | double | The ending value. |
step | double | The step value. |
return | System |
public this ( int j, int i ) : |
||
j | int | The 1-based row-index. |
i | int | The 1-based column-index. |
return |