10-12-2007 11:31 AM
I like the idea as well. Just make it similar to the new 'conditional terminal' option. Right click, and you can then include a 'base' and 'step' terminal, just below the N on the top left.
Simple and powerfull. And doesn't sound very hard to implement either...
10-12-2007 04:55 PM
10-13-2007 01:34 PM
10-13-2007 07:16 PM
One problem that would need to be addressed is the current restrictions of array indices to I32. So if you have a U32 loop, you could easily create an autoindexing output that exceeds the currently allowed array size. Still, on a 32 bit OS, it would be hard to exceed that size anyway (at least in memory) so I am not sure why that extra factor of 2 (going from I32 to U32) would ever be useful.
Did you really run into a limitation because if I32? Can you show an example?
(Maybe in a few years we'll have a 64 bit LabVIEW with I64 array indices and I64 FOR loops. ;))
10-15-2007 02:40 AM
Eric, is there a way to see what's allready suggested to the 'product suggestion center' ?
10-15-2007 11:29 PM
02-22-2014 07:57 AM
I am new to LabView.I want to run iteration for negative i as well.Can you pls suggest me a way to do that...??
02-22-2014 08:18 AM
How is that supposed to work?
02-22-2014 08:24 AM
As of now i am doing it with adding 'i' with a negative number and making some further manipulations to get my work done but it makes it very complex.I think there must be some easy way out to this.As i was searching on forums, i came across use of "arrays and/or clusters" for making configurable for loops but i couldn't comprehend that.In case it can't be done using for loop ..u may suggest some other way.I was wondering if i would make my own counter using some way(as mentioned in this post as one of the replies),will it serve the purpose..??
02-22-2014 08:32 AM
You are trying to iterate through an array backwards? If that is the case, then just use a Reverse 1D Array function in there and then autoindex on your FOR loop.
If I'm misunderstanding, please provide an example of what you are trying to do.