Go to the source code of this file.
|
template<typename scalar > |
using | Matrix = Eigen::Matrix< scalar, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor > |
|
|
template<typename precision = pfasst::time_precision> |
shared_ptr< IQuadrature< precision > > | pfasst::quadrature::quadrature_factory (const size_t nnodes, const QuadratureType qtype) |
| Instantiates quadrature handler for given number of nodes and type descriptor. More...
|
|
template<typename precision = pfasst::time_precision> |
vector< precision > | pfasst::quadrature::compute_nodes (size_t nnodes, QuadratureType qtype) |
| Compute quadrature nodes for given quadrature type descriptor. More...
|
|
template<typename precision = time_precision> |
Matrix< precision > | pfasst::quadrature::compute_interp (vector< precision > dst, vector< precision > src) |
|
- Since
- v0.1.0
Definition in file quadrature.hpp.
template<typename scalar >
using Matrix = Eigen::Matrix<scalar, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> |