C# Class Utilities.Maths.Matrix

Afficher le fichier Open project: feanz/Utilities

Private Properties

Свойство Type Description

Méthodes publiques

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

Method Details

Determinant() public méthode

Gets the determinant of a square matrix
public Determinant ( ) : double
Résultat double

Equals() public méthode

public Equals ( object obj ) : bool
obj object
Résultat bool

GetHashCode() public méthode

public GetHashCode ( ) : int
Résultat int

Matrix() public méthode

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
Résultat System

ToString() public méthode

public ToString ( ) : string
Résultat string

Transpose() public méthode

Transposes the matrix
public Transpose ( ) : Matrix
Résultat Matrix

operator() public static méthode

public static operator ( ) : Matrix
Résultat Matrix

operator() public static méthode

public static operator ( ) : bool
Résultat bool

this() public méthode

Sets the values of the matrix
public this ( int x, int y ) : double
x int X position
y int Y position
Résultat double