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

com.github.chen0040.glm.links.AbstractLinkFunction Maven / Gradle / Ivy

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();
    }
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy