#include "SimTKcommon.h"
#include "internal/common.h"
#include "SimTKcommon/internal/BigMatrix.h"
Go to the source code of this file.
Namespaces | |
namespace | SimTK |
Classes | |
class | Differentiator |
Given a function f(y), where f, y or both can be vectors, calculate the derivative (gradient, Jacobian) df/dy. More... | |
class | Differentiator::Function |
This abstract class defines a function to be differentiated (repeatedly) by a Differentiator object. More... | |
class | Differentiator::ScalarFunction |
Derive a concrete class from this one if you have a scalar function of a single scalar variable that you want to differentiate. More... | |
class | Differentiator::GradientFunction |
Derive a concrete class from this one if you have a scalar function of multiple variables that you want to differentiate. More... | |
class | Differentiator::JacobianFunction |
Derive a concrete class from this one if you have a set of functions (i.e., a vector-valued function) of multiple variables that you want to differentiate. More... |