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

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

There is a newer version: 1.0.5
Show newest version
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();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy