|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.ObjectFunction
public abstract class Function
Fonction d'une variable.
Constructor Summary | |
---|---|
Function()
|
Method Summary | |
---|---|
abstract Function |
derivate()
Retourne la dérivée. |
abstract double |
evaluate(double x)
Retourne l'image de x. |
double |
integrate(double a,
double b,
int nbSubdivisions)
Retourne l'integrale entre a et b (a < b), calculée avec la méthode des trapèzes en effectuant nbSubdivisions subdivisions de l'intervalle à intégrer. |
abstract boolean |
isConstant()
Ssi la fonction ne contient pas de variable. |
abstract boolean |
isOne()
Ssi la fonction est une feuille valant 1. |
abstract boolean |
isZero()
Ssi la fonction est une feuille valant 0. |
static void |
main(java.lang.String[] args)
|
abstract Function |
simplify()
Retourne la fonction simplifiée. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Function()
Method Detail |
---|
public abstract double evaluate(double x)
public abstract Function derivate()
public abstract Function simplify()
public abstract boolean isConstant()
public abstract boolean isZero()
public abstract boolean isOne()
public double integrate(double a, double b, int nbSubdivisions)
public static void main(java.lang.String[] args)
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |