SAE24_2022/ex3
2023-05-20 17:54:42 +02:00
..
scripts [Ex3 - Q1] Ajout 2023-05-20 17:54:42 +02:00
README.md [Ex3 - Q1] Ajout 2023-05-20 17:54:42 +02:00

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

Question 1 : Acroissements minimaux et maximaux

Quels sont les accroissements minimaux et maximaux ?

Script 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%

🏠