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

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

There is a newer version: 1.0.11
Show newest version
package jscl.math.function;

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

public abstract class ArcTrigonometric extends Function {

	public ArcTrigonometric(String name, Generic parameter[]) {
		super(name, parameter);
	}

	public Generic antiDerivative(int n) throws NotIntegrableException {
		throw new NotIntegrableException(this);
	}

	public Generic selfSimplify() {
		return selfExpand();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy