C# Class MapAround.MathUtils.Matrix

Represents a square matrix.
Exibir arquivo Open project: gkrsu/maparound.core

Public Methods

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.

Method Details

GetInverseMatrix() public method

Calculates the inverse matrix.
public GetInverseMatrix ( ) : Matrix
return Matrix

Matrix() public method

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

Multiply() public method

Multiply this matrix to the other.
public Multiply ( Matrix other ) : Matrix
other Matrix Factor
return Matrix

this() public method

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
return double