jscl.math.function.Algebraic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jscl Show documentation
Show all versions of jscl Show documentation
java symbolic computing library and mathematical editor
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;
}
}