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

jscl.math.function.Algebraic Maven / Gradle / Ivy

The newest version!
package jscl.math.function;

import jscl.math.Generic;
import jscl.math.NotIntegrableException;

public abstract class Algebraic extends Function {
    public Algebraic(String name, Generic parameter[]) {
        super(name,parameter);
    }

    public abstract Root rootValue() throws NotRootException;

    public Generic antiderivative(int n) throws NotIntegrableException {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy