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