Method | Description | |
---|---|---|
GetValue ( int x, int y ) : double |
Gets the value at the specified x/y position.
|
|
SetColumn ( int x ) : void |
Set the column at the specified x position.
|
|
SetRow ( int y ) : void |
Set the row at the specified y position.
|
|
SetValue ( int x, int y, double value ) : void |
Set the value at the specified x/y position.
|
|
ToArray ( ) : double[] |
Returns a string that represents the current DoubleMatrix.
|
|
this ( int x, int y ) : double |
Get or set the value at the specified x/y position.
|
Method | Description | |
---|---|---|
DoubleMatrix ( int order, double values ) : System |
Initializes a new instance of the DoubleMatrix class.
|
Method | Description | |
---|---|---|
CreateInstance ( |
||
CreateNativeInstance ( ) : INativeInstance | ||
GetIndex ( int x, int y ) : int |
protected DoubleMatrix ( int order, double values ) : System | ||
order | int | The order. |
values | double | The values to initialize the matrix with. |
return | System |
public GetValue ( int x, int y ) : double | ||
x | int | The x position |
y | int | The y position |
return | double |
public SetValue ( int x, int y, double value ) : void | ||
x | int | The x position |
y | int | The y position |
value | double | The value |
return | void |
public this ( int x, int y ) : double | ||
x | int | The x position |
y | int | The y position |
return | double |