Member of the programming class.
for variable = expression
Performs a for loop. The principle calling structure of a for loop is:
for variable = expression
statement1,
....
....
statementn,
end
If the expression is a vector, LabVIEW executes the for loop once for each element. If the expression is a matrix, LabVIEW executes the for loop once for each column.
A = 1
for X = 1:1:10
A = A+1
end