Java source code of 'jhplot.math.pca.covmatrixevd.EVDResult'

package jhplot.math.pca.covmatrixevd;

import Jama.Matrix;

/**
 * 
 * @author Mateusz Kobos
 *
 */
public class EVDResult {
	public Matrix d;
	public Matrix v;
	
	public EVDResult(Matrix d, Matrix v) {
		this.d = d;
		this.v = v;
	}
}