j'ai quatres compteurs et je vais cree un algorithme de calcul mais ca marche pas
voici mon programme (je crois que l'ecriture a = 0:2 , b = 0:2 , c = 0:2 , d = 0:2 n'est pas bonne )
aidez-moi SVP
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11 b_inf =0; M= []; N = []; for (a = 0:2 , b = 0:2 , c = 0:2 , d = 0:2) if (result(a,b,c,d)>=b_inf & a+b+c+d=2) N = [N,a,b,c,d] M = [M,result(a,b,c,d)] end end N M
Partager