00001
00002
00003
00004
00005
00006
00007 #ifndef RTMRAWAVD_H
00008 #define RTMRAWAVD_H
00009
00010 void rtmrawavd(
00011 const int& Msize,
00012 const int& mmax,
00013 const int& mrastep,
00014 const float* mracoef,
00015 const int& m,
00016 float& wavd
00017 );
00018
00019 void rtmrawavd(
00020 const int& Msize,
00021 const int& mmax,
00022 const int& mrastep,
00023 const double* mracoef,
00024 const int& m,
00025 double& wavd
00026 );
00027
00028 void rtmrawavd(
00029 const int& Msize,
00030 const int& mmax,
00031 const int& mrastep,
00032 const int* mracoef,
00033 const int& m,
00034 int& wavd
00035 );
00036
00037 void rtmrawavd(
00038 const int& Asize,
00039 const int& Msize,
00040 const int& amax,
00041 const int& mmax,
00042 const int& mrastep,
00043 const float* mracoef,
00044 const int& a,
00045 const int& m,
00046 float& wavd
00047 );
00048
00049 void rtmrawavd(
00050 const int& Asize,
00051 const int& Msize,
00052 const int& amax,
00053 const int& mmax,
00054 const int& mrastep,
00055 const double* mracoef,
00056 const int& a,
00057 const int& m,
00058 double& wavd
00059 );
00060
00061 void rtmrawavd(
00062 const int& Asize,
00063 const int& Msize,
00064 const int& amax,
00065 const int& mmax,
00066 const int& mrastep,
00067 const int* mracoef,
00068 const int& a,
00069 const int& m,
00070 int& wavd
00071 );
00072
00073 #endif
00074