Property | Type | Description | |
---|---|---|---|
cols | int | ||
matrix | ].double[ | ||
name | string | ||
number | int | ||
rows | int |
Method | Description | |
---|---|---|
Add ( Matrix matrix2, Matrix result ) : string | ||
Add ( double scalar, Matrix result ) : string | ||
Copy ( Matrix matrix2 ) : string | ||
Inverse ( Matrix inverse ) : string | ||
Matrix ( int _rows, int _cols, int _number ) : System | ||
Multiply ( Matrix matrix2, Matrix result ) : string | ||
Multiply ( double scalar, Matrix result ) : string | ||
Reset ( ) : void | ||
Transpose ( Matrix transpose ) : string |
public Add ( Matrix matrix2, Matrix result ) : string | ||
matrix2 | Matrix | |
result | Matrix | |
return | string |
public Add ( double scalar, Matrix result ) : string | ||
scalar | double | |
result | Matrix | |
return | string |
public Matrix ( int _rows, int _cols, int _number ) : System | ||
_rows | int | |
_cols | int | |
_number | int | |
return | System |
public Multiply ( Matrix matrix2, Matrix result ) : string | ||
matrix2 | Matrix | |
result | Matrix | |
return | string |
public Multiply ( double scalar, Matrix result ) : string | ||
scalar | double | |
result | Matrix | |
return | string |
public Transpose ( Matrix transpose ) : string | ||
transpose | Matrix | |
return | string |