Clearing functions selectively, excluding ones with persistent vars
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
fugue
el 18 de Sept. de 2014
Comentada: fugue
el 19 de Sept. de 2014
Hi everyone,
I am having memory issues with version 7 (2004) and have to twist and twirl to get around it. I want to clear all the functions at some point, except ones that have persistent variables in them. I create an automatic list for those function names, and find the rest of the function names, but I cannot use the clear command to remove those functions from memory, due to type mismatch. Any ideas on this?
---> clear(setdiff(inmem,pers_fList)) % (pers_fList : function list to keep)
'setdiff' outputs cell array, which 'clear' does not accept. I can't convert it appropriately. Could there be a simple solution to this? Thanks !
0 comentarios
Respuesta aceptada
Geoff Hayes
el 18 de Sept. de 2014
Stephanie - try creating the cell array as
funcsToClear = setdiff(inmem,pers_fList);
and then clear it with
clear(funcsToClear{:});
I was able to do the above with a similar cell array of strings.
Más respuestas (1)
John Barber
el 19 de Sept. de 2014
Another approach is to use the mlock function inside of the functions that you want to protect from being cleared. You can then call clear functions without having to worry about keeping a list.
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!