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

mikera.matrixx.decompose.impl.bidiagonal.BidiagonalRowResult 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.impl.bidiagonal;

import mikera.matrixx.AMatrix;
import mikera.matrixx.decompose.IBidiagonalResult;

public class BidiagonalRowResult implements IBidiagonalResult {
	
	private AMatrix B;
	private AMatrix U;
	private AMatrix V;
	
	public BidiagonalRowResult(AMatrix U, AMatrix B, AMatrix V) {
		this.U = U;
		this.B = B;
		this.V = V;
	}
	
	@Override
    public AMatrix getB() {
    	return B;
    }
    
	@Override
    public AMatrix getU() {
    	return U;
    }
    
	@Override
    public AMatrix getV() {
    	return V;
    }   
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy