Functions.hxx

00001 // Copyright (C) 2003-2007, Vivien Mallet
00002 //
00003 // This file is part of SeldonData library, used for data processing.
00004 //
00005 // SeldonData is free software; you can redistribute it and/or modify it under
00006 // the terms of the GNU General Public License as published by the Free
00007 // Software Foundation; either version 2 of the License, or (at your option)
00008 // any later version.
00009 //
00010 // SeldonData is distributed in the hope that it will be useful, but WITHOUT
00011 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00012 // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
00013 // more details.
00014 //
00015 // For more information, visit the SeldonData home page:
00016 //      http://vivienmallet.net/lib/seldondata/
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 }  // namespace SeldonData.
00040 
00041 #define FILE_SELDONDATA_FUNCTIONS_HXX
00042 #endif

Generated on Tue Nov 17 11:20:52 2009 for SeldonData by  doxygen 1.5.1