Свойство | Тип | Описание |
---|
Метод | Описание | |
---|---|---|
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
|
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 |
public this ( int x, int y ) : double | ||
x | int | X position |
y | int | Y position |
Результат | double |