C# Класс Utilities.Maths.Matrix

Показать файл Открыть проект

Private Properties

Свойство Тип Описание

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

Метод Описание
Determinant ( ) : double

Gets the determinant of a square matrix

Equals ( object obj ) : bool
GetHashCode ( ) : int
Matrix ( int width, int height, double values = null ) : System

Constructor

ToString ( ) : string
Transpose ( ) : Matrix

Transposes the matrix

operator ( ) : Matrix
operator ( ) : bool
this ( int x, int y ) : double

Sets the values of the matrix

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

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

Gets the determinant of a square matrix
public Determinant ( ) : double
Результат double

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

public Equals ( object obj ) : bool
obj object
Результат bool

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

public GetHashCode ( ) : int
Результат int

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

Constructor
public Matrix ( int width, int height, double values = null ) : System
width int Width of the matrix
height int Height of the matrix
values double Values to use in the matrix
Результат System

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

public ToString ( ) : string
Результат string

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

Transposes the matrix
public Transpose ( ) : Matrix
Результат Matrix

operator() публичный статический Метод

public static operator ( ) : Matrix
Результат Matrix

operator() публичный статический Метод

public static operator ( ) : bool
Результат bool

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

Sets the values of the matrix
public this ( int x, int y ) : double
x int X position
y int Y position
Результат double