Annotation of ADD_ver_10/Source Code/Header Files/calculosmatrices.h, revision 1.1

1.1     ! rico        1: /******************************************************************************/
        !             2: /* MÓDULO: calculosmatrices.h                                                 */
        !             3: /*                                                                            */
        !             4: /* Prototipos de funciones utilizadas en el módulo 'CalculosMatrices.c'       */
        !             5: /******************************************************************************/
        !             6: /* Fecha: 29 de septiembre de 2005                                            */
        !             7: /******************************************************************************/
        !             8: 
        !             9: 
        !            10: /* MÓDULO 'Notificaciones.c' */
        !            11: 
        !            12: void Notificar(char *mensaje, unsigned char accion, unsigned char eco);
        !            13: 
        !            14: 
        !            15: 
        !            16: /* MÓDULO 'Matrices.c' */
        !            17: 
        !            18: unsigned char ** CrearMatriz();
        !            19: void IniciarMatriz(unsigned char **matriz);
        !            20: void LiberarMemoriaMatriz(unsigned char **matriz);
        !            21: 
        !            22: 
        !            23: 
        !            24: /* MÓDULO 'Auxiliares.c' */
        !            25: 
        !            26: void AgregarElementoLista(char *lista, char *cadena);
        !            27: double CalcularNuevoPromedio (double promedioanterior, double valoractual, unsigned long n);
        !            28: double InversoNormalizado (unsigned int dimension, double valor);
        !            29: 
        !            30: 
        !            31: 
        !            32: 

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