- makeIdentity() - Method in interface matrix.Matrix
-
If possible, turns this matrix into an identity matrix.
- matrix - package matrix
-
- Matrix - Interface in matrix
-
This interface describes an API for working with two-dimensional
matrices of integers.
- MatrixControl - Class in gui
-
This class provides controls for a displayed matrix, including filling,
clearing, transposing, making an identity, and creating a new matrix.
- MatrixControl() - Constructor for class gui.MatrixControl
-
Creates a new matrix control object with default parameters.
- MatrixControl(int, int, int, int, boolean) - Constructor for class gui.MatrixControl
-
Creates a new matrix control object.
- MatrixDisplay - Class in gui
-
This class provides a display area for elements of a matrix, or for the
results of matrix operations.
- MatrixDisplay(int, int, boolean) - Constructor for class gui.MatrixDisplay
-
Creates a matrix display.
- MatrixDisplay(int, int) - Constructor for class gui.MatrixDisplay
-
Creates a matrix display.
- MatrixDisplay() - Constructor for class gui.MatrixDisplay
-
Creates a matrix display using default values for element size
and maximum dimension.
- MatrixException - Exception in matrix
-
A class for handling matrix exceptions, including row or column indices
that are out of bounds, attempting to add or multiply matrices of incorrect
dimensions, and other situations.
- MatrixException() - Constructor for exception matrix.MatrixException
-
- MatrixException(String) - Constructor for exception matrix.MatrixException
-
Creates a matrix exception object.
- MatrixOperation - Class in gui
-
This class allows operations to be tried on two matrix operands,
with the result displayed.
- MatrixOperation(int, int, int, boolean) - Constructor for class gui.MatrixOperation
-
- matrixProperty() - Method in class gui.MatrixControl
-
A JavaFX property for the matrix controlled by this matrix control object.
- MAX_DIMENSION - Static variable in class gui.MatrixControl
-
- multiply(Matrix) - Method in class matrix.AbstractMatrix
-
Multiplies this matrix by another.
- multiply(Matrix) - Method in interface matrix.Matrix
-
Multiplies this matrix by another.