[Ex3 - Q3] Ajout
This commit is contained in:
parent
41fab4c98f
commit
c954838ad5
@ -41,3 +41,4 @@ Les réponses aux questions des exercices sont situées dans les README des doss
|
|||||||
3. [Taux d'accoissement naturel](ex3/)
|
3. [Taux d'accoissement naturel](ex3/)
|
||||||
1. [Acroissements minimaux et maximaux](ex3/#q1)
|
1. [Acroissements minimaux et maximaux](ex3/#q1)
|
||||||
2. [Pays ayant un taux d'accroissement négatif](ex3/#q2)
|
2. [Pays ayant un taux d'accroissement négatif](ex3/#q2)
|
||||||
|
3. [Moyenne](ex3/#q3)
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
## Table des matières
|
## Table des matières
|
||||||
1. [Acroissements minimaux et maximaux](#q1)
|
1. [Acroissements minimaux et maximaux](#q1)
|
||||||
2. [Pays ayant un taux d'accroissement négatif](#q2)
|
2. [Pays ayant un taux d'accroissement négatif](#q2)
|
||||||
|
3. [Moyenne](#q3)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@ -58,6 +59,21 @@ Pays ayant un taux d'accroissement négatif :
|
|||||||
- Portugal : -0.30%
|
- Portugal : -0.30%
|
||||||
- Serbie : -0.50%
|
- Serbie : -0.50%
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Question 3 : Moyenne {#q3}
|
||||||
|
|
||||||
|
> Déterminer l’accroissement mondial moyen.
|
||||||
|
|
||||||
|
**[Script Scilab](scripts/ex3-3.sce) :**
|
||||||
|
|
||||||
|
```scilab
|
||||||
|
mean(tauxAccroissement);
|
||||||
|
```
|
||||||
|
|
||||||
|
**Résultat :**
|
||||||
|
- Taux d'accroissement moyen : 1.32%
|
||||||
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
6
ex3/scripts/ex3-3.sce
Normal file
6
ex3/scripts/ex3-3.sce
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
data = csvRead("data.csv");
|
||||||
|
|
||||||
|
tauxAccroissement = ((data(:, 4) / 1000) - (data(:, 5) / 1000)) * 100;
|
||||||
|
tauxAccroissementMoyen = mean(tauxAccroissement);
|
||||||
|
|
||||||
|
mprintf("Taux d''accroissement moyen : %.2f%%\n", tauxAccroissementMoyen);
|
Loading…
Reference in New Issue
Block a user