07-29-2005 11:59 AM
07-29-2005 12:11 PM
07-29-2005 12:29 PM
Thanks for your help,but actually,this is just sample program cutted from a bigger program,i have to find the reason why i can not connect the fomular output to a array indicator
07-29-2005 12:31 PM - edited 07-29-2005 12:31 PM
Message Edited by John Rich on 07-29-2005 12:35 PM
07-29-2005 12:40 PM - edited 07-29-2005 12:40 PM
Message Edited by Chaos on 07-29-2005 12:41 PM
07-29-2005 03:23 PM
07-29-2005 03:30 PM
07-29-2005 05:12 PM
OK, your VI does not make much sense. You are not autoindexing on the while loop, thus you will never get a 2D array and all calculations except for the last while iteration will be lost.
Why are you generating 10x10 data if you later only use 3x3?
IF you really want to use the formula node in a loop with a single scalar input, you would simply need to convert the dynamic output back to a single scalar. There are clearly better ways to do this (no loops required), but since I don't know the real code, I left the rest in place. Don't use while loops if there is no variable termination condition and a fixed number of iterations!