|
|||||||||||||
08-31-2006 11:11 AM
altenbach wrote:
Maybe I don't quite understand your code, but I think you're a bit unfair here, because your code is more complicated than needed. From what I can see, the entire case structure can be omitted without any change in outcome. Why would you need to replace an element with itself in the array if it is > 10??? That's equal to a NOOP.
... where is that "oops" smiley when I need it ... ![]()
You're right, my example is less than perfect. However, the ">10" check was just meant to represent some operation to be performed in order to create an array out of the loop. The shift register/replace array element/array subset business is of course just to use memory more efficiently. This points out the significant difference between my example of a for loop with a break and your example simply using a while loop: Internally, the for loop knows the maximum number of iterations it will run (the length of the input array), and therefore can still preallocate memory for the output array. The while loop does not know this, and will have to dynamically allocate memory.
In short, the two benefits of having an "early" break in a for loop (which my examples were supposed to display) are:
1. Preallocated memory for auto-indexed output arrays
2. No need to check for 'i == [array size] - 1" as is necessary to stop a while loop
Jaegen
08-31-2006 11:12 AM - edited 08-31-2006 11:12 AM

Message Edited by altenbach on 08-31-2006 09:18 AM
08-31-2006 04:15 PM - edited 08-31-2006 04:15 PM

Message Edited by altenbach on 08-31-2006 02:16 PM
12-11-2006 09:30 AM
One of the options for the while loop that would be nice to have is a "terminate on true" (or false).
Many of my programs have multiple while loops, and it would be a whole lot easier if when my main while loop stopped, all the rest of the while loops would gracefully come to an end with it.
05-30-2007 02:06 PM
05-30-2007 02:26 PM
05-30-2007 04:40 PM - edited 05-30-2007 04:40 PM



Message Edited by altenbach on 05-30-2007 02:43 PM
05-31-2007 03:36 AM
Using extra operations to decide pre-loop how much to loop... Yes that usually works nicely, but not always.
A couple of times I have written highly optimized code where you could not do this. It was essential to only loop over the data a single time. The reason was that the CPU can burst-read and cache sequential data perfectly. It can then do a couple of actions on that data and continue with the next block. If you need to go through the same data more than once it can be much slower, no matter how highly optimized the NI function node is. For large datasets the bottleneck has moved from executing a loop to retrieving data from memory. A freely available example of this is the first NI coding challenge where I was in the winning team.
NickH, I don't think it's really smart to respond in this way. It seems to me you have not read the rest of the thread, because then you would have considered our thoughts in your answer and replied to arguments. Anyway it's nice you brought new life into the thread. Let me then ask, why do you not think it is confusing if the loop can be terminated at an unknown point ? Remember the compiler schedules the instructions in an unknown order, resulting in an undetermined amount of executions of a subVI. It's not procedural coding like in C...
Joris
10-13-2007 12:15 PM
10-13-2007 08:23 PM
gmiles@inventeering.com wrote:
Here is a link to the code...
Sorry, I don't quite understand the meaning of your linked code in the context of this thread. Can you elaborate a little bit?
Also, the use of "concave" subVI icons is somewhat irritating. What are the benefits?.
My Profile | Privacy |
Legal |
Contact NI
© 2011 National Instruments Corporation. All rights reserved. | E-Mail this Page
|
||

E-Mail this Page