C# Класс MapAround.MathUtils.Matrix

Represents a square matrix.
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

GetInverseMatrix() публичный Метод

Calculates the inverse matrix.
public GetInverseMatrix ( ) : Matrix
Результат Matrix

Matrix() публичный Метод

Initializes a new instance of MapAround.MathUtils.Matrix.
public Matrix ( double elements ) : System
elements double An array of doubles containing matrix elements
Результат System

Multiply() публичный Метод

Multiply this matrix to the other.
public Multiply ( Matrix other ) : Matrix
other Matrix Factor
Результат Matrix

this() публичный Метод

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
Результат double