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