Interface IMatrix
Namespace: g3
Assembly: cs.temp.dll.dll
Syntax
public interface IMatrix
Properties
Columns
Declaration
int Columns { get; }
Property Value
Type | Description |
---|---|
Int32 |
Item[Int32, Int32]
Declaration
double this[int r, int c] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
Int32 | r | |
Int32 | c |
Property Value
Type | Description |
---|---|
Double |
Rows
Declaration
int Rows { get; }
Property Value
Type | Description |
---|---|
Int32 |
Size
Declaration
Index2i Size { get; }
Property Value
Type | Description |
---|---|
Index2i |
Methods
Set(Int32, Int32, Double)
Declaration
void Set(int r, int c, double value)
Parameters
Type | Name | Description |
---|---|---|
Int32 | r | |
Int32 | c | |
Double | value |