SAE24_2022/ex3/README.md
2023-05-20 17:54:42 +02:00

31 lines
697 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Exercice 3 : Taux d'accoissement naturel
> On rappelle que le taux daccroissement naturel est la différence entre la natalité et la mortalité.
## Table des matières
1. [Acroissements minimaux et maximaux](#q1)
---
## Question 1 : Acroissements minimaux et maximaux {#q1}
> Quels sont les accroissements minimaux et maximaux ?
**[Script Scilab](scripts/ex3-1.sce) :**
```scilab
tauxAccroissement = ((data(:, 4) / 1000) - (data(:, 5) / 1000)) * 100;
tauxAccroissementMin = min(tauxAccroissement)
tauxAccroissementMax = max(tauxAccroissement)
```
**Résultat :**
- Taux d'accroissement minimal : -0.60%
- Taux d'accroissement maximal : 3.80%
---
[🏠](../ "Retour au sommaire")