00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef FILE_SELDONDATA_FUNCTIONS_HXX
00019
00020 namespace SeldonData
00021 {
00022
00023 template<int N, class TIn, class TGIn,
00024 class TOut, class TGOut>
00025 void LinearInterpolationRegular(Data<TIn, N, TGIn>& dataIn,
00026 Data<TOut, N, TGOut>& dataOut);
00027
00028 template<int N, class TIn, class TGIn,
00029 class TOut, class TGOut>
00030 void LinearInterpolationOneGeneral(Data<TIn, N, TGIn>& dataIn,
00031 Data<TOut, N, TGOut>& dataOut,
00032 int dim);
00033
00034 template<int N, class TIn, class TGIn,
00035 class TOut, class TGOut>
00036 void LinearInterpolationPoint(Data<TIn, N, TGIn>& dataIn,
00037 Array<TGOut, 1>& Coord, TOut& dataOut);
00038
00039 }
00040
00041 #define FILE_SELDONDATA_FUNCTIONS_HXX
00042 #endif