Method | Description | |
---|---|---|
GetInverseMatrix ( ) : Matrix |
Calculates the inverse matrix.
|
|
Matrix ( double elements ) : System |
Initializes a new instance of MapAround.MathUtils.Matrix.
|
|
Multiply ( Matrix other ) : Matrix |
Multiply this matrix to the other.
|
|
this ( int i, int j ) : double |
Gets or sets an element of this matrix.
|
public Matrix ( double elements ) : System | ||
elements | double | An array of doubles containing matrix elements |
return | System |
public Multiply ( Matrix other ) : Matrix | ||
other | Matrix | Factor |
return | Matrix |
public this ( int i, int j ) : double | ||
i | int | A zero-based index of the element row |
j | int | A zero-based index of the element column |
return | double |