Go to the source code of this file.
|
| static auto | numerics::_3D::partialX (auto f, const auto x, const auto y, const auto t) |
| | Approximates the partial derivative ∂f/∂x of a function f(x, y, t) using central differences.
|
| |
| static auto | numerics::_3D::partialY (auto f, const auto x, const auto y, const auto t) |
| | Approximates the partial derivative ∂f/∂y of a function f(x, y, t) using central differences.
|
| |
| static auto | numerics::_3D::partialT (auto f, const auto x, const auto y, const auto t) |
| | Approximates the partial derivative ∂f/∂t of a function f(x, y, t) using central differences.
|
| |