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

mikera.matrixx.decompose.LUP Maven / Gradle / Ivy

Go to download

Fast double-precision vector and matrix maths library for Java, supporting N-dimensional numeric arrays.

There is a newer version: 0.67.0
Show newest version
package mikera.matrixx.decompose;

import mikera.matrixx.AMatrix;
import mikera.matrixx.decompose.impl.lu.AltLU;

public class LUP {
	
	// TODO: fuller documentation for LUP properties

	private LUP(){}
	
	/**
	 * This performs LU decomposition on the given matrix and returns the result as a ILUPResult object
	 * 
	 * @param A The matrix that is to be decomposed. Not modified.
	 * @return An ILUPResult object that contains L, U and P matrices
	 */
	public static ILUPResult decompose(AMatrix A) {
		return AltLU.decompose(A);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy