org.jeometry.math.decomposition.Decomposition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeometry-api Show documentation
Show all versions of jeometry-api Show documentation
Jeometry, a Mathematic and Geometry library for Java
package org.jeometry.math.decomposition;
import java.util.List;
import org.jeometry.Jeometry;
import org.jeometry.math.Matrix;
/**
* An interface that describes matrix decomposition. A decomposition enable to express a matrix as a composition of other matrices.
* @author Julien Seinturier - COMEX S.A. - [email protected] - https://github.com/jorigin/jeometry
* @version {@value Jeometry#version} b{@value Jeometry#BUILD}
* @since 1.0.0
*/
public interface Decomposition {
/**
* Get all the components of the decomposition.
* @return the list of all the components that compose the decomposition of the given matrix.
*/
public List getComponents();
}