Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
statutils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CRUS
statutils
Commits
5910b319
Commit
5910b319
authored
3 years ago
by
Aymeric Agon-Rambosson
Browse files
Options
Downloads
Patches
Plain Diff
Ajout licence.
parent
afb05a6a
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
AUTEURS
+1
-0
1 addition, 0 deletions
AUTEURS
COPYING
+674
-0
674 additions, 0 deletions
COPYING
IC_moyenne.c
+22
-3
22 additions, 3 deletions
IC_moyenne.c
README
+31
-0
31 additions, 0 deletions
README
with
728 additions
and
3 deletions
AUTEURS
0 → 100644
+
1
−
0
View file @
5910b319
Aymeric Agon-Rambosson (aymeric.agon-rambosson@lip6.fr)
This diff is collapsed.
Click to expand it.
COPYING
0 → 100644
+
674
−
0
View file @
5910b319
This diff is collapsed.
Click to expand it.
IC_moyenne.c
+
22
−
3
View file @
5910b319
/* 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é.
...
...
This diff is collapsed.
Click to expand it.
README
0 → 100644
+
31
−
0
View file @
5910b319
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.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment