NuTo
Numerics Tool
Quadrature.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <vector>
4 
5 namespace NuTo
6 {
7 namespace Math
8 {
9 
13 std::pair<std::vector<double>, std::vector<double>> ComputeWeightsAndPoints1DLobatto(int nIps);
14 
18 std::pair<std::vector<double>, std::vector<double>> ComputeWeightsAndPoints1DGauss(int nIps);
19 
20 } // namespace Math
21 } // namespace NuTo
std::pair< std::vector< double >, std::vector< double > > ComputeWeightsAndPoints1DLobatto(int nIps)
computes points and weights for Lobatto quadrature in 1D
Definition: Quadrature.cpp:6
std::pair< std::vector< double >, std::vector< double > > ComputeWeightsAndPoints1DGauss(int nIps)
computes points and weights for Gauss quadrature in 1D
Definition: Quadrature.cpp:26
Definition: Exception.h:6