Annotation of ADD_ver_10/calculosmatrices.h, revision 1.1

1.1     ! rico        1: /********************************************************************/
        !             2: /*  calculosmatrices.h                                              */
        !             3: /*                                                                  */
        !             4: /*  Copyright (c) 1997-2006 Rafael Rico      (rafael.rico@uah.es)   */
        !             5: /*                                                                  */
        !             6: /*  This file is part of ADD version 5.10.                          */
        !             7: /*                                                                  */
        !             8: /*  ADD is free software; you can redistribute it and/or modify     */
        !             9: /*  it under the terms of the GNU General Public License as         */
        !            10: /*  published by the Free Software Foundation; either version 2 of  */
        !            11: /*  the License, or (at your option) any later version.             */
        !            12: /*                                                                  */
        !            13: /*  ADD is distributed in the hope that it will be useful,          */
        !            14: /*  but WITHOUT ANY WARRANTY; without even the implied warranty of  */
        !            15: /*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the   */
        !            16: /*  GNU General Public License for more details.                    */
        !            17: /*                                                                  */
        !            18: /*  You should have received a copy of the GNU General Public       */
        !            19: /*  License along with ADD; if not, write to the Free Software      */
        !            20: /*  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA        */
        !            21: /*  02111-1307  USA                                                 */
        !            22: /*                                                                  */
        !            23: /*  --------------------------- History --------------------------- */
        !            24: /*                                                                  */
        !            25: /*  Revision 1.2. 01/2006                                           */
        !            26: /*  Added GPL License and JavaDoc style documentation               */
        !            27: /*                                                                  */
        !            28: /*  Revision 1.1. 09/2005                                           */
        !            29: /*  Initial Revision                                                */
        !            30: /*                                                                  */
        !            31: /********************************************************************/
        !            32: 
        !            33: 
        !            34: /******************************************************************************/
        !            35: /* MÓDULO: calculosmatrices.h                                                 */
        !            36: /*                                                                            */
        !            37: /* Prototipos de funciones utilizadas en el módulo 'CalculosMatrices.c'       */
        !            38: /******************************************************************************/
        !            39: /* Fecha: 29 de septiembre de 2005                                            */
        !            40: /******************************************************************************/
        !            41: 
        !            42: 
        !            43: /* MÓDULO 'Notificaciones.c' */
        !            44: 
        !            45: void Notificar(char *mensaje, unsigned char accion, unsigned char eco);
        !            46: 
        !            47: 
        !            48: 
        !            49: /* MÓDULO 'Matrices.c' */
        !            50: 
        !            51: unsigned char ** CrearMatriz();
        !            52: void IniciarMatriz(unsigned char **matriz);
        !            53: void LiberarMemoriaMatriz(unsigned char **matriz);
        !            54: 
        !            55: 
        !            56: 
        !            57: /* MÓDULO 'Auxiliares.c' */
        !            58: 
        !            59: void AgregarElementoLista(char *lista, char *cadena);
        !            60: double CalcularNuevoPromedio (double promedioanterior, double valoractual, unsigned long n);
        !            61: double InversoNormalizado (unsigned int dimension, double valor);
        !            62: 
        !            63: 
        !            64: 
        !            65: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>