Main Page | Files | Data Structures | Functions | Global Variables |

gpiv-post_utils.h

Go to the documentation of this file.
00001 /* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 c-style: "K&R" -*- */
00002 
00003 /*
00004    libgpiv - library for Particle Image Velocimetry
00005 
00006    Copyright (C) 2007 Gerber van der Graaf
00007 
00008    This file is part of libgpiv.
00009 
00010    Libgpiv is free software; you can redistribute it and/or modify
00011    it under the terms of the GNU General Public License as published by
00012    the Free Software Foundation; either version 2, or (at your option)
00013    any later version.
00014 
00015    This program is distributed in the hope that it will be useful,
00016    but WITHOUT ANY WARRANTY; without even the implied warranty of
00017    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00018    GNU General Public License for more details.
00019 
00020    You should have received a copy of the GNU General Public License
00021    along with this program; if not, write to the Free Software Foundation,
00022    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
00023 
00024 
00025 
00026 
00027 -------------------------------------------------------------------------------
00028 LIBRARY:                 libgpiv:
00029 EXTERNAL FUNCTIONS:
00030                          gpiv_null_scdata
00031                          gpiv_alloc_scdata
00032                          gpiv_free_scdata
00033 
00034                          gpiv_null_bindata
00035                          gpiv_alloc_bindata
00036                          gpiv_free_bindata
00037 
00038 
00039 LAST MODIFICATION DATE:  $Id: utils.h,v 1.20 2007-06-06 16:59:02 gerber Exp $
00040  --------------------------------------------------------------------------- */
00050 #ifndef __LIBGPIV_POST_UTILS_H__
00051 #define __LIBGPIV_POST_UTILS_H__
00052 
00053 
00061 void
00062 gpiv_null_scdata                        (GpivScalarData         *scal_data
00063                                         );
00064 
00065 
00073 GpivScalarData *
00074 gpiv_alloc_scdata                       (const gint             nx,
00075                                         const gint              ny
00076                                         );
00077 
00078 
00086 void 
00087 gpiv_free_scdata                        (GpivScalarData         *scal_data
00088                                         );
00089 
00090 
00091 
00101 gchar *
00102 gpiv_scalar_gnuplot                     (const gchar            *fname_out, 
00103                                         const gchar             *title, 
00104                                         const gchar             *GNUPLOT_DISPLAY_COLOR, 
00105                                         const gint              GNUPLOT_DISPLAY_SIZE
00106                                         );
00107 
00108 
00109 
00117 void
00118 gpiv_null_bindata                       (GpivBinData            *bin_data
00119                                         );
00120 
00121 
00128 GpivBinData *
00129 gpiv_alloc_bindata                      (const guint            nbins
00130                                         );
00131 
00132 
00140 void
00141 gpiv_free_bindata                       (GpivBinData            *bin_data
00142                                         );
00143 
00144 
00152 void 
00153 gpiv_histo                              (const GpivPivData      *data,
00154                                         GpivBinData             *klass 
00155                                         );
00156 
00157 
00158 
00167 void 
00168 gpiv_cumhisto                           (const GpivPivData      *data, 
00169                                         GpivBinData             *klass
00170                                         );
00171 
00172 
00173 
00183 gchar *
00184 gpiv_histo_gnuplot                      (const gchar            *fname_out,
00185                                         const gchar             *title,
00186                                         const gchar             *GNUPLOT_DISPLAY_COLOR,
00187                                         const gint              GNUPLOT_DISPLAY_SIZE
00188                                         );
00189 
00190 
00191 #endif /* __LIBGPIV_POST_UTILS_H__ */

Generated on Tue Nov 20 19:46:20 2007 for Libgpiv by doxygen 1.5.1