NIL
For a <constant-function> evaluation and derivative computation are trivial.
Superclasses: <FUNCTION>
Direct slots:
- VALUE: Self-explanatory.
The <function> class is an abstract class for a general function. This function will usually accept vector arguments, the dimensions of domain and image are fixed when defining the function. If the function is differentiable, the gradient matrix can be obtained by evaluating the gradient slot.
Direct slots:
- DOMAIN-DIMENSION: Self-explanatory.
- IMAGE-DIMENSION: Self-explanatory.
A <linear-function> is determined by a matrix A and a vector b. It represents the map x -> Ax+b.
Superclasses: <FUNCTION>
Direct slots:
- A: Self-explanatory.
- B: Self-explanatory.
This class implements a function which maps the unit interval to a polygon.
Superclasses: <FUNCTION>
Direct slots:
- POINTS: A vector of points for the polygon.
A <special-function> provides its own evaluation and gradient computation.
Superclasses: <FUNCTION>
Direct slots:
- EVALUATOR: Self-explanatory.
- GRADIENT: Self-explanatory.
- JET: Self-explanatory.
Returns a special function drawing a polar around midpoint with distance given by the function or number radial-distance with angular velocity omega. Without arguments it yields a function mapping R^1 isometrically to S^1.
On a regular partition of the unit interval interpolating values y are given. This function returns an interpolating spline.
Returns t if f is differentiable or differentiable of the given degree.
Returns a matrix A suitable for describing the ellipse as (Ax,x)=1.
Generic evaluation of functions on an argument. Numbers and arrays are treated as constants. Special evaluation is defined for multivariate polynomials on vectors and for <function> objects.
Returns a function which uses its first coordinate as a homotopy parameter.
Returns n-variate monomials of degree being equal or being lower or equal than deg. Examples: (n-variate-monomials-of-degree 2 2) -> (x2^2 x1*x2 x1^2) (n-variate-monomials-of-degree 2 2 '<=) -> (1 x2 x1 x2^2 x1*x2 x1^2)
Computes a very accurate real derivative for functions which can be applied to complex arguments.
Multivariate polynomial. The coefficients are represented as nested lists.
Superclasses: <VECTOR>
Direct slots:
- COEFFS: Self-explanatory.
Returns a function which projects to the ellipsoid given by Q(x-midpoint)=1 where Q is the quadratic form associated with the matrix A.
Returns a function which projects to the sphere with given midpoint and radius.