|
Class Summary |
| Define |
Allows functions to be defined in equations. |
| FromBase |
|
| Max |
A max function Max(x^2,x,1,10) finds the max of x^2 with x running from 1 to 10. |
| MaxArg |
|
| Min |
A min function Min(x^2,x,1,10) finds the min of x^2 with x running from 1 to 10. |
| MinArg |
|
| Product |
A product function product(x^2,x,1,10) finds the product of x^2 with x running from 1 to 10. |
| Simpson |
The Simpson rule for approximation to a definite integral. |
| Sum |
A sum function Sum(x^2,x,1,10) finds the sum of x^2 with x running from 1 to 10. |
| SumType |
Base class for functions like Sum(x^2,x,1,10) which finds the sum of x^2 with x running from 1 to 10. |
| ToBase |
Convert a number to a string in a given base. |
| Trapezium |
The trapezium rule for approximation to a definite integral. |
| XAssign |
An assignment operator so we can do
x=3+4. |