All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jeometry.math.decomposition.Decomposition Maven / Gradle / Ivy

package org.jeometry.math.decomposition;

import java.util.List;

import org.jeometry.Geometry;
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 Geometry#version} b{@value Geometry#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();
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy