#ifndef STATISTIQUE_H_INCLUDED
#define STATISTIQUE_H_INCLUDED

float moyenne (char *tab,int ilong);
float mediane (char *tab,int ilong);
void rangement (char *tab,int ilong);

float ecart_type(char *tab,int ilong, float fmoy);

typedef struct Statistique{

    float Moy;
    float EcartT;
    float Mediane;
    float Etendu;
    float min;
    float max;
    int* frequence;
    int* quantile ;

};
#endif // STATISTIQUE_H_INCLUDED
