Uses of Interface
org.ojalgo.matrix.decomposition.MatrixDecomposition.Updatable
Packages that use MatrixDecomposition.Updatable
-
Uses of MatrixDecomposition.Updatable in org.ojalgo.matrix.decomposition
Subinterfaces of MatrixDecomposition.Updatable in org.ojalgo.matrix.decompositionModifier and TypeInterfaceDescriptioninterfaceLU<N extends Comparable<N>>LU: [A] = [L][U]interfaceQR<N extends Comparable<N>>QR: [A] = [Q][R] Decomposes [this] into [Q] and [R] where: [Q] is an orthogonal matrix (orthonormal columns).Classes in org.ojalgo.matrix.decomposition that implement MatrixDecomposition.UpdatableModifier and TypeClassDescription(package private) classDenseLU<N extends Comparable<N>>(package private) static final class(package private) static final class(package private) static final class(package private) static final class(package private) static final class(package private) classDenseQR<N extends Comparable<N>>(package private) static final class(package private) static final class(package private) static final class(package private) static final class(package private) static final class(package private) final class(package private) final classFor an m-by-n matrix A with m >= n, the QR decomposition is an m-by-n orthogonal matrix Q and an n-by-n upper triangular matrix R so that A = Q*R.(package private) final classA sparse, primitive double based, LU decomposition with support for incremental Forrest-Tomlin updates.