Skip to content
Snippets Groups Projects
Commit 5910b319 authored by Aymeric Agon-Rambosson's avatar Aymeric Agon-Rambosson
Browse files

Ajout licence.

parent afb05a6a
Branches
No related tags found
No related merge requests found
Aymeric Agon-Rambosson (aymeric.agon-rambosson@lip6.fr)
COPYING 0 → 100644
This diff is collapsed.
/* IC_moyenne.c
*
* Copyright (C) 2021 Aymeric Agon-Rambosson
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/*
* IC_moyenne lit des points depuis l'entrée standard (un par ligne),
* les interprète comme un échantillon, et calcule la moyenne et
* l'intervalle de confiance de l'échantillon à l'aide de la loi t de
* IC_moyenne lit des points depuis l'entrée standard (un par ligne), les
* interprète comme un échantillon, et calcule l'estimateur de la moyenne
* et l'intervalle de confiance de cet estimateur à l'aide de la loi t de
* Student. Les résultats sont imprimés dans la sortie standard.
*
* Il est possible de spécifier le niveau de confiance souhaité.
......
README 0 → 100644
IC_moyenne
==========
This is IC_moyenne, a programe to calculate confidence intervals for sampled
mean estimators.
IC_moyenne is free software, you can redistribute it and/or modify it under the
terms of the GNU General Public License.
The GNU General Public License does not permit this software to be redistributed
in proprietary programs.
This library is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
Ce programme lit un ensemble de flottants double précision depuis l'entrée
standard (un nombre par ligne) jusqu'à rencontrer EOF, interprète ces nombres
comme un échantillon d'une population infinie, et imprime dans la sortie
standard un estimateur de la moyenne, et l'intervalle de confiance de cet
estimateur (en utilisant la loi t de Student).
Il est possible de spécifier le niveau de confiance souhaité en argument.
Ce programme a été écrit parce que calculer un intervalle de confiance
correctement requérait auparavant d'utiliser python ou R. Maintenant, une
implémentation de la bibliothèque scientifique GNU (GSL) suffit. On trouvera les
fichiers d'en-tête et la bibliothèque compilée statiquement dans le paquet
Debian libgsl-dev, et la bibliothèque compilée dynamiquement dans le paquet
Debian libgsl25, dépendance du précédent.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment