08-05-2010 08:04 AM
Bonjour,
Je souhaite realiser sous Labviews le programme suivant:
For(i=0,i<=8;i++)
For(j=0,j<=8,j++)
T[i][j+1]=T[i][j]+1.
En gros, je vx obtenir un tableau 2D ou le contenu d'une case est egal à celui de la case precedente +1
Merci d'avance,
08-05-2010 08:42 AM
Translation from french
I want to achieve the following program Labview:
For (i = 0, i <= 8; i + +)
For (j = 0, j <= 8, j + +)
T [i] [j +1] = T [i] [j] +1.
Basically, I get a 2D array vx or content of a box is equal to that of the previous one box
08-05-2010 09:11 AM - edited 08-05-2010 09:16 AM
Bonjour fatzo,
boucles imbriquées sont très faciles à créer avec LabVIEW. Il suffit de dessiner une boucle dans l'autre, comme ceci:
Le terminal «N» définit la taille de la dimension, et «i» dans chaque boucle est l'itération de cette boucle.
By the way, for the confused non-french speaking reader, the last sentence he said was "Basically, I want to get a 2D array where the contents of a square is equal to the previous square +1.