C# Class MapAround.MathUtils.Matrix

Represents a square matrix.
Afficher le fichier Open project: gkrsu/maparound.core

Méthodes publiques

Méthode 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.

Method Details

GetInverseMatrix() public méthode

Calculates the inverse matrix.
public GetInverseMatrix ( ) : Matrix
Résultat Matrix

Matrix() public méthode

Initializes a new instance of MapAround.MathUtils.Matrix.
public Matrix ( double elements ) : System
elements double An array of doubles containing matrix elements
Résultat System

Multiply() public méthode

Multiply this matrix to the other.
public Multiply ( Matrix other ) : Matrix
other Matrix Factor
Résultat Matrix

this() public méthode

Gets or sets an element of this 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
Résultat double