large files, very slow editor, no fix?
16 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Changes to the editor in R2011 have dramatically slowed down the editor when working with large m-files (e.g. 1000's of lines). I have been in correspondence with support staff, who tell me to disable cell mode and break up the file into smaller files.
Disabling cell mode does help somewhat, but there is still a lot of latency while typing. It can be several seconds to see what was typed. Even scrolling is choppy.
So the next step is break up the large file. But here's the problem. Most of the functions within the file are nested functions, which share the scope of the parent functions. How do I move the nested functions to separate files and maintain the behavior of nested functions?
0 comentarios
Respuesta aceptada
Michael Katz
el 12 de Ag. de 2011
Try also increasing the size of the Java heap. File -> Preferences -> General -> Java Heap Memory. It may not help, depending on where the time is being spent, but it's worth a shot.
Más respuestas (5)
Oleg Komarov
el 12 de Ag. de 2011
By moving the nested functions to separate files you will:
- Lose the ability to see the parent's function workspace
- Other functions will see them and you may get into conflicts
To solve 1. you have two options:
- Add inputs to your ex-nested functions (no big news here).
- [STRONGLY UNRECOMMENDED] Hardcode assignin calls.
4 comentarios
Michael Katz
el 12 de Ag. de 2011
If the latency is related to the code structure, using subfunctions would help, as the editor needs more power to process deeper into nested code. Without seeing the code, it's hard to make a good judgement, but if the nesting is several levels deep, maybe it can be rewritten to use fewer levels. Also consider using a class object if that data has to be shared within that many function calls.
Daniel Shub
el 12 de Ag. de 2011
You could switch to an editor like emacs/vim.
You could move your nested functions to separate files. Then write another function that writes a new mfile that integrates your nested functions into the main function.
Divide your code up into smaller and reusable blocks. Use structures to efficiently pass the formerly nested functions arguments.
2 comentarios
Daniel Shub
el 12 de Ag. de 2011
I don't use emacs with MATLAB, but more details can be found at:
http://blogs.mathworks.com/desktop/2009/09/14/matlab-emacs-integration-is-back/
and
http://matlab-emacs.sourceforge.net/faq.shtml
for more details ...
Would it use color to differentiate the various parts of the syntax? Yes
Would it flag syntax errors and make suggestions for correction? To some degree. It integrates with mlint.
Does it fold sections of code? I believe there are emacs plugings for this.
Autosave? Yes
Does it permit stepping through the code in debug mode, with the value of variables popping up when hovering over them? I am not sure on this one, but it looks like it.
Will it let me jump to the offending line of code after clicking on an error message? Yes
Andreas Goser
el 12 de Ag. de 2011
I know of a couple of examples where disabling cell mode completley healed the issue. Actually, I know only of one counter-example and this was a user who had his large MATLAB Code on an external server (mapped drive). If this is the case for you, please try putting the file local.
3 comentarios
per isakson
el 12 de Ag. de 2011
An object oriented design with methods in a separate @-folder should solve the problem with the editor.
Rewriting object oriented code, which is implemented with nested functions, might not be as bad as it sounds. I've done it a few times (for other reasons) with pre-R2008a m-files. At most a couple of thousand lines. However, it is certainly not a quick-fix.
0 comentarios
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!