How can I speed up my program ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
Yair Altman
el 16 de Feb. de 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.
Respuestas (1)
Yair Altman
el 17 de Feb. de 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 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!