00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef RTMRARESET_H
00012 #define RTMRARESET_H
00013
00014 void rtmrareset(
00015 const int& Msize,
00016 const int& mmax,
00017 int& mrastep,
00018 float* mracoef
00019 );
00020
00021 void rtmrareset(
00022 const int& Msize,
00023 const int& mmax,
00024 int& mrastep,
00025 double* mracoef
00026 );
00027
00028 void rtmrareset(
00029 const int& Asize,
00030 const int& Msize,
00031 const int& amax,
00032 const int& mmax,
00033 int& mrastep,
00034 float* mracoef
00035 );
00036
00037 void Crtmrareset(
00038 const int& Asize,
00039 const int& Msize,
00040 const int& amax,
00041 const int& mmax,
00042 int& mrastep,
00043 double* mracoef
00044 );
00045
00046 #endif
00047