![]() |
Stan Math Library
5.3.0
Automatic Differentiation
|
#include <stan/math/prim/fun/Eigen.hpp>#include <stan/math/fwd/core.hpp>#include <stan/math/fwd/meta.hpp>#include <stan/math/fwd/fun/value_of.hpp>#include <stan/math/prim/meta.hpp>#include <stan/math/prim/fun/fft.hpp>#include <stan/math/prim/fun/to_ref.hpp>#include <complex>Go to the source code of this file.
Namespaces | |
| namespace | stan |
| The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation from C or the boost::math::lgamma implementation. | |
| namespace | stan::math |
| Matrices and templated mathematical functions. | |
Functions | |
| template<typename V , require_eigen_vector_vt< is_complex, V > * = nullptr, require_fvar_t< base_type_t< value_type_t< V > > > * = nullptr> | |
| Eigen::Matrix< scalar_type_t< V >, -1, 1 > | stan::math::fft (V &&x) |
| Return the discrete Fourier transform of the specified complex vector for forward-mode autodiff. | |
| template<typename V , require_eigen_vector_vt< is_complex, V > * = nullptr, require_fvar_t< base_type_t< value_type_t< V > > > * = nullptr> | |
| Eigen::Matrix< scalar_type_t< V >, -1, 1 > | stan::math::inv_fft (V &&y) |
| Return the inverse discrete Fourier transform of the specified complex vector for forward-mode autodiff. | |
| template<typename M , require_eigen_dense_dynamic_vt< is_complex, M > * = nullptr, require_fvar_t< base_type_t< value_type_t< M > > > * = nullptr> | |
| Eigen::Matrix< scalar_type_t< M >, -1, -1 > | stan::math::fft2 (M &&x) |
| Return the two-dimensional discrete Fourier transform of the specified complex matrix for forward-mode autodiff. | |
| template<typename M , require_eigen_dense_dynamic_vt< is_complex, M > * = nullptr, require_fvar_t< base_type_t< value_type_t< M > > > * = nullptr> | |
| Eigen::Matrix< scalar_type_t< M >, -1, -1 > | stan::math::inv_fft2 (M &&y) |
| Return the two-dimensional inverse discrete Fourier transform of the specified complex matrix for forward-mode autodiff. | |