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

com.github.wihoho.training.ProjectedTrainingMatrix Maven / Gradle / Ivy

package com.github.wihoho.training;

import com.github.wihoho.jama.Matrix;

public class ProjectedTrainingMatrix {
	Matrix matrix;
	String label;
	double distance = 0;

	public ProjectedTrainingMatrix(Matrix m, String l) {
		this.matrix = m;
		this.label = l;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy