![]() |
Mimetic Operators Library Enhanced 4.0
|
Mimetic Interpolator operator. More...
#include <interpol.h>
Public Member Functions | |
Interpol (u32 m, Real c) | |
1-D Mimetic Interpolator Constructor | |
Interpol (u32 m, u32 n, Real c1, Real c2) | |
2-D Mimetic Interpolator Constructor | |
Interpol (u32 m, u32 n, u32 o, Real c1, Real c2, Real c3) | |
3-D Mimetic Interpolator Constructor | |
Interpol (bool type, u32 m, Real c) | |
1-D Mimetic Interpolator Constructor | |
Interpol (bool type, u32 m, u32 n, Real c1, Real c2) | |
2-D Mimetic Interpolator Constructor | |
Interpol (bool type, u32 m, u32 n, u32 o, Real c1, Real c2, Real c3) | |
3-D Mimetic Interpolator Constructor | |
Mimetic Interpolator operator.
Definition at line 25 of file interpol.h.
Interpol::Interpol | ( | u32 | m, |
Real | c ) |
1-D Mimetic Interpolator Constructor
m | Number of cells |
c | Weight for ends, can be any value from 0.0<=c<=1.0 |
Definition at line 19 of file interpol.cpp.
2-D Mimetic Interpolator Constructor
m | Number of cells in x-direction |
n | Number of cells in y-direction |
c1 | Weight for ends in x-direction, can be any value from 0.0<=c<=1.0 |
c2 | Weight for ends in y-direction, can be any value from 0.0<=c<=1.0 |
Definition at line 33 of file interpol.cpp.
3-D Mimetic Interpolator Constructor
m | Number of cells in x-direction |
n | Number of cells in y-direction |
o | Number of cells in z-direction |
c1 | Weight for ends in x-direction, can be any value from 0.0<=c<=1.0 |
c2 | Weight for ends in y-direction, can be any value from 0.0<=c<=1.0 |
c3 | Weight for ends in z-direction, can be any value from 0.0<=c<=1.0 |
Definition at line 60 of file interpol.cpp.
Interpol::Interpol | ( | bool | type, |
u32 | m, | ||
Real | c ) |
1-D Mimetic Interpolator Constructor
type | Dummy holder to trigger overloaded function |
m | Number of cells |
c | Weight for ends, can be any value from 0.0<=c<=1.0 |
Definition at line 94 of file interpol.cpp.
2-D Mimetic Interpolator Constructor
type | Dummy holder to trigger overloaded function |
m | Number of cells in x-direction |
n | Number of cells in y-direction |
c1 | Weight for ends in x-direction, can be any value from 0.0<=c<=1.0 |
c2 | Weight for ends in y-direction, can be any value from 0.0<=c<=1.0 |
Definition at line 112 of file interpol.cpp.
3-D Mimetic Interpolator Constructor
type | Dummy holder to trigger overloaded function |
m | Number of cells in x-direction |
n | Number of cells in y-direction |
o | Number of cells in z-direction |
c1 | Weight for ends in x-direction, can be any value from 0.0<=c<=1.0 |
c2 | Weight for ends in y-direction, can be any value from 0.0<=c<=1.0 |
c3 | Weight for ends in z-direction, can be any value from 0.0<=c<=1.0 |
Definition at line 129 of file interpol.cpp.