com.github.chen0040.glm.links.AbstractLinkFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-glm Show documentation
Show all versions of java-glm Show documentation
Generalized linear models implemented in Java
package com.github.chen0040.glm.links;
import sun.reflect.generics.reflectiveObjects.NotImplementedException;
/**
* Created by xschen on 14/8/15.
*/
public abstract class AbstractLinkFunction implements LinkFunction {
public abstract double GetLink(double constraint_interval_value);
public abstract double GetInvLink(double real_line_value);
public abstract double GetInvLinkDerivative(double real_line_value);
public LinkFunction makeCopy(){
throw new NotImplementedException();
}
}