How can I speed up my program ?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I am working with R2014b. whenever using cell array in my codes, it takes too much of the time to get the output. how to speed up my code ?
1 Commento
Yair Altman
il 16 Feb 2019
You did not include enough information in your question. Place a representative code snippet and timing measurements and then - maybe - someone will be able to assist you to find a faster alternative.
Risposte (1)
Yair Altman
il 17 Feb 2019
The first step you should do is to run your code in the Matlab Profiler. This will give you insight as to the specific bottleneck(s) in your code, and you can then focus your efforts to improve those.
For example, perhaps the main bottleneck is reading the disk file? or maybe parsing its data? or maybe the inner loop? Perhaps the loops run too many times than they should? perhaps you can calculate some loop computations outside the loop (rather than repeatedly within it)?
- All these are examples of questions that can only be answered once you have run your code in the Profiler and analyzed the reported results.
0 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!