Go to the source code of this file.
Functions | |
| void | rtrsmrawavcoef (const int &Asize, const int &Msize, const int &amax, const int &mmax, const int &mrastep, const int *mracoef, const int *mracoefrs, const int &a, const int &m, int &wavcoef) |
| void | rtrsmrawavcoef (const int &Asize, const int &Msize, const int &amax, const int &mmax, const int &mrastep, const double *mracoef, const double *mracoefrs, const int &a, const int &m, double &wavcoef) |
| void | rtrsmrawavcoef (const int &Asize, const int &Msize, const int &amax, const int &mmax, const int &mrastep, const float *mracoef, const float *mracoefrs, const int &a, const int &m, float &wavcoef) |
| void | rtrsmrawavcoef (const int &Msize, const int &mmax, const int &mrastep, const int *mracoef, const int *mracoefrs, const int &m, int &wavcoef) |
| void | rtrsmrawavcoef (const int &Msize, const int &mmax, const int &mrastep, const double *mracoef, const double *mracoefrs, const int &m, double &wavcoef) |
| void | rtrsmrawavcoef (const int &Msize, const int &mmax, const int &mrastep, const float *mracoef, const float *mracoefrs, const int &m, float &wavcoef) |
|
||||||||||||||||||||||||||||||||||||||||||||
|
Definition at line 157 of file rtrsmrawavcoef.cpp. References iartrsmrawavcoef1_(). Referenced by Rtrsmra< Data_t, array >.wav0(), and Rtrsmra< Data_t, scalar >.wav0().
00169 {
00170 #ifdef STORM_USEF
00171 iartrsmrawavcoef1_(
00172 &Asize, &Msize,
00173 &amax, &mmax,
00174 &mrastep, mracoef, mracoefrs,
00175 &a, &m, &wavcoef
00176 );
00177 #else
00178 // if ( ( a >= 0 ) && ( a <= amax ) && ( m >= 0 ) && ( m <= mmax ) ) {
00179 wavcoef = mracoef[ Msize*2*a + 2*m +1 ];
00180 // } else {
00181 // wavcoef = 1/0;
00182 // }
00183 #endif
00184 }
|
|
||||||||||||||||||||||||||||||||||||||||||||
|
Definition at line 127 of file rtrsmrawavcoef.cpp.
00139 {
00140 #ifdef STORM_USEF
00141 dartrsmrawavcoef1_(
00142 &Asize, &Msize,
00143 &amax, &mmax,
00144 &mrastep, mracoef, mracoefrs,
00145 &a, &m, &wavcoef
00146 );
00147 #else
00148 // if ( ( a >= 0 ) && ( a <= amax ) && ( m >= 0 ) && ( m <= mmax ) ) {
00149 wavcoef = mracoef[ Msize*2*a + 2*m +1 ];
00150 // } else {
00151 // wavcoef = 1.0/0;
00152 // }
00153 #endif
00154 }
|
|
||||||||||||||||||||||||||||||||||||||||||||
|
Definition at line 97 of file rtrsmrawavcoef.cpp.
00109 {
00110 #ifdef STORM_USEF
00111 artrsmrawavcoef1_(
00112 &Asize, &Msize,
00113 &amax, &mmax,
00114 &mrastep, mracoef, mracoefrs,
00115 &a, &m, &wavcoef
00116 );
00117 #else
00118 // if ( ( a >= 0 ) && ( a <= amax ) && ( m >= 0 ) && ( m <= mmax ) ) {
00119 wavcoef = mracoef[ Msize*2*a + 2*m + 1 ];
00120 // } else {
00121 // wavcoef = 1.0/0;
00122 // }
00123 #endif
00124 }
|
|
||||||||||||||||||||||||||||||||
|
Definition at line 70 of file rtrsmrawavcoef.cpp.
00079 {
00080 #ifdef STORM_USEF
00081 irtrsmrawavcoef_(
00082 &Msize,
00083 &mmax,
00084 &mrastep, mracoef, mracoefrs,
00085 &m, &wavcoef
00086 );
00087 #else
00088 // if ( ( m >= 0 ) && ( m <= mmax ) ) {
00089 wavcoef = mracoef[ 2*m + 1 ];
00090 // } else {
00091 // wavcoef = 1/0;
00092 // }
00093 #endif
00094 }
|
|
||||||||||||||||||||||||||||||||
|
Definition at line 43 of file rtrsmrawavcoef.cpp.
00052 {
00053 #ifdef STORM_USEF
00054 drtrsmrawavcoef_(
00055 &Msize,
00056 &mmax,
00057 &mrastep, mracoef, mracoefrs,
00058 &m, &wavcoef
00059 );
00060 #else
00061 // if ( ( m >= 0 ) && ( m <= mmax ) ) {
00062 wavcoef = mracoef[ 2*m + 1 ];
00063 // } else {
00064 // wavcoef = 1.0/0;
00065 // }
00066 #endif
00067 }
|
|
||||||||||||||||||||||||||||||||
|
Definition at line 16 of file rtrsmrawavcoef.cpp.
00025 {
00026 #ifdef STORM_USEF
00027 rtrsmrawavcoef_(
00028 &Msize,
00029 &mmax,
00030 &mrastep, mracoef, mracoefrs,
00031 &m, &wavcoef
00032 );
00033 #else
00034 // if ( ( m >= 0 ) && ( m <= mmax ) ) {
00035 wavcoef = mracoef[ 2*m + 1 ];
00036 // } else {
00037 // wavcoef = 1.0/0;
00038 // }
00039 #endif
00040 }
|
1.3.6