I have a problem with an array: I get an 1D-array with zero or values which reperesents failure codes. I want to proof this array to not equal zero. If there is a value, the programm has to stop an show a text with the failure number But I don't know how to prof the array an set a flag. Is it possible with a FOR loop?
You can use the "Equal to 0?" function under the Comparison palette. It will generate an array of true/false values, true meaning that the corresponding value is equal to 0. Then you can "And" the array using the "And array elements" function, which is under the Boolean palette. If there is a value other than 0, the result will be "False".