Uses of Class
ch.nolix.base.container.matrix.Matrix
Packages that use Matrix
-
Uses of Matrix in ch.nolix.base.container.matrix
Methods in ch.nolix.base.container.matrix that return MatrixModifier and TypeMethodDescriptionAdds a new column to the currentMatrixwith the given elements.Adds a new column to the currentMatrixwith the given elements.Adds a new row to the currentMatrixwith the given elements.Adds a new row to the currentMatrixwith the given elements.static <T> Matrix<T> Matrix.createEmpty()static <T> Matrix<T> Matrix.fromMatrix(IMatrix<T> matrix) Matrix.getCopy()The time complexity of this implementation is O(m * n) if: -This matrix contains m rows.Matrix.toLeftRotatedMatrix()The time complexity of this implementation is O(n) if the currentMatrixcontains n elements.<O> Matrix<O> The time complexity of this implementation is O(n) if: -This matrix contains n elements.Matrix.toRightRotatedMatrix()The time complexity of this implementation is O(n) if the currentMatrixcontains n elements.Methods in ch.nolix.base.container.matrix with parameters of type MatrixModifier and TypeMethodDescriptionstatic <T> MatrixIterator<T> static <T> MatrixColumn<T> MatrixColumn.forMatrixAndOneBasedColumnIndex(Matrix<T> parentMatrix, int oneBasedColumnIndex) static <T> MatrixRow<T> MatrixRow.forMatrixAndOneBasedRowIndex(Matrix<T> parentMatrix, int oneBasedRowIndex) static <T> MatrixIterator<T> MatrixIterator.forMatrixAndOneBasedStartIndex(Matrix<T> matrix, int oneBasedStartIndex) -
Uses of Matrix in ch.nolix.system.graphic.image
Methods in ch.nolix.system.graphic.image that return MatrixMethods in ch.nolix.system.graphic.image with parameters of type Matrix