00001 /*************************************************************************** 00002 * @file gnn_gaussian_noise_input.h 00003 * @brief gnn_gaussian_noise_input Header File. 00004 * 00005 * @date : 05-10-03 12:48 00006 * @author : Pedro Ortega C. <peortega@dcc.uchile.cl> 00007 * Copyright 2003 Pedro Ortega C. 00008 ****************************************************************************/ 00009 /* 00010 * This program 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 of the License, or 00013 * (at your option) 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 Library 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 00022 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00023 */ 00024 00025 #ifndef _GNN_GAUSSIAN_NOISE_INPUT_H_ 00026 #define _GNN_GAUSSIAN_NOISE_INPUT_H_ 00027 00028 00029 00030 /******************************************/ 00031 /* Include Files */ 00032 /******************************************/ 00033 00034 #include "gnn_input.h" 00035 00036 00037 00038 /******************************************/ 00039 /* Macros and Definitions */ 00040 /******************************************/ 00041 00042 #define GNN_GAUSSIAN_NOISE_INPUT_RNG gsl_rng_taus 00043 00044 00045 00046 /******************************************/ 00047 /* Public Interface */ 00048 /******************************************/ 00049 00050 gnn_input * 00051 gnn_gaussian_noise_new (gnn_input *input, double sigma); 00052 00053 int 00054 gnn_gaussian_noise_set_sigma (gnn_input *input, double sigma); 00055 00056 double 00057 gnn_gaussian_noise_get_sigma (gnn_input *input); 00058 00059 00060 00061 #endif /* _GNN_GAUSSIAN_NOISE_INPUT_H_ */ 00062 00063 00064
1.2.18