07-09-2014 11:12 PM
Thanks a lot for your help guys.
I want to optimize my code, its very slow. I have matrix of 512*512*512, for visualizing in plane I am taking one column/row from each 512*512 and making it new 512 by 512 matrix but it taking so much time. Please share your idea to make this code faster.
Here I am attaching my code. I will appriciate your help
07-10-2014 04:21 AM
Why are you using so many local variables when you can connect them directly ?
07-10-2014 01:34 PM
Here I am posting few block of program. When your program contain like five six tabls and much more frame handling these wire is bit difficult , that's why I used local variables.
Thanks
07-11-2014
10:15 AM
- last edited on
12-05-2024
10:31 AM
by
Content Cleaner
Here are a couple of documents that discuss different ways to optimize LabVIEW code. Specifically, I'd consider parallel for loops if subsequent iterations of your loop don't have a data dependency on earlier iterations.
Improving Performance with Parallel For Loops
07-11-2014 04:34 PM
Thank for your reply and providing nice link