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

com.github.chen0040.libsvm.SupportVectorMachineNode Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package com.github.chen0040.libsvm;
public class SupportVectorMachineNode implements java.io.Serializable
{
	public int index;
	public double value;

	public void copy(SupportVectorMachineNode rhs){
		index = rhs.index;
		value = rhs.value;
	}

	public SupportVectorMachineNode makeCopy(){
		SupportVectorMachineNode clone = new SupportVectorMachineNode();
		clone.copy(this);
		return clone;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy