[Help] Matlab executes the program very slowly (Slow execution)
Mostrar comentarios más antiguos
I am working on code on matlab which basically consist of for loops and matrices values i.e. image processing but it takes around 2 3 minutes to execute the code while the same code runs faster on my other laptop, please help
5 comentarios
Philip Borghesani
el 21 de Mzo. de 2017
Are you using the same version of matlab on the same os? What processors do the machines have? Post some example code or tell us what code is taking the time by using the profiler. Looping over images by pixel is slow, see if you can vectorize the code to loop over columns at a minimum.
akash bais
el 21 de Mzo. de 2017
akash bais
el 21 de Mzo. de 2017
Adam
el 21 de Mzo. de 2017
That definitely looks suspiciously like for loops. The fact that almost no function is registering at all as significant apart from 'trial' for which 'Self Time' is basically the entire time of the program suggests that you are doing something extremely slow with code that has nothing to do with functions of any other kind.
akash bais
el 21 de Mzo. de 2017
Respuestas (1)
Please try profiler
11 comentarios
akash bais
el 21 de Mzo. de 2017
akash bais
el 21 de Mzo. de 2017
Jan
el 21 de Mzo. de 2017
@Chocolate: If you inlcude links in < and > it is clickable.
@akash: Please follow the link of Chocolate, because it is the documentation of the needed command. Everything you need is explained there.
Even better, just
doc profile
should give you your local help. I'm not aware of major changes in the profiler in recent versions, but if you aren't running the latest Matlab you are better looking at your local help than the latest help which may not be valid for your version.
Unless for some reason you don't have local help installed.
akash bais
el 21 de Mzo. de 2017
akash bais
el 21 de Mzo. de 2017
Jan
el 21 de Mzo. de 2017
The main work is done inside the function "trial". No click on this underlines link and examine, which lines takes the most time.
akash bais
el 21 de Mzo. de 2017
Please proceed with the examination of the profiler protocol. Currently you see the main page only. Click on the functions until you found the line or code block, which uses the most of the run time. Then post this part to get further help.
akash bais
el 22 de Mzo. de 2017
Adam
el 22 de Mzo. de 2017
We still can't help in any way if we have no more information than that something inside 'trail' is very slow.
Categorías
Más información sobre Introduction to Installation and Licensing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

