template<unsigned int dim, typename T, unsigned int ord = 2, unsigned int impl = KER_GAUSSIAN>
struct Lap_PSE< dim, T, ord, impl >
Implementation of the Laplacian kernels for PSE.
- Template Parameters
-
| dim | Dimension |
| T | type \ord order pf approximation (default 2) \impl TYPE of kernel |
Definition at line 25 of file Kernels.hpp.
|
| | Lap_PSE (T epsilon) |
| |
| T | value (T(&x)[dim], T(&y)[dim]) |
| | From a kernel centered in x, it give the value of the kernel in y.
|
| |
| T | value (T(&x)[dim], const Point< dim, T > &y) |
| | From a kernel centered in x, it give the value of the kernel in y.
|
| |
| T | value (const Point< dim, T > &x, T(&y)[dim]) |
| | From a kernel centered in x, it give the value of the kernel in y.
|
| |
| T | value (const Point< dim, T > &x, const Point< dim, T > &y) |
| | From a kernel centered in x, it give the value of the kernel in y.
|
| |
template<unsigned int dim, typename T , unsigned int ord = 2, unsigned int impl = KER_GAUSSIAN>
| T Lap_PSE< dim, T, ord, impl >::value |
( |
const Point< dim, T > & |
x, |
|
|
const Point< dim, T > & |
y |
|
) |
| |
|
inline |
From a kernel centered in x, it give the value of the kernel in y.
- Parameters
-
| x | center of the kernel |
| y | where we calculate the kernel |
Definition at line 75 of file Kernels.hpp.
template<unsigned int dim, typename T , unsigned int ord = 2, unsigned int impl = KER_GAUSSIAN>
| T Lap_PSE< dim, T, ord, impl >::value |
( |
const Point< dim, T > & |
x, |
|
|
T(&) |
y[dim] |
|
) |
| |
|
inline |
From a kernel centered in x, it give the value of the kernel in y.
- Parameters
-
| x | center of the kernel |
| y | where we calculate the kernel |
Definition at line 63 of file Kernels.hpp.
template<unsigned int dim, typename T , unsigned int ord = 2, unsigned int impl = KER_GAUSSIAN>
| T Lap_PSE< dim, T, ord, impl >::value |
( |
T(&) |
x[dim], |
|
|
const Point< dim, T > & |
y |
|
) |
| |
|
inline |
From a kernel centered in x, it give the value of the kernel in y.
- Parameters
-
| x | center of the kernel |
| y | where we calculate the kernel |
Definition at line 51 of file Kernels.hpp.
template<unsigned int dim, typename T , unsigned int ord = 2, unsigned int impl = KER_GAUSSIAN>
| T Lap_PSE< dim, T, ord, impl >::value |
( |
T(&) |
x[dim], |
|
|
T(&) |
y[dim] |
|
) |
| |
|
inline |
From a kernel centered in x, it give the value of the kernel in y.
- Parameters
-
| x | center of the kernel |
| y | where we calculate the kernel |
Definition at line 39 of file Kernels.hpp.