Borrar filtros
Borrar filtros

Save and Load the variables in GUI Mode

1 visualización (últimos 30 días)
Thulasi Durai Durai Samy
Thulasi Durai Durai Samy el 22 de Jul. de 2012
Hello
I nee to save a structure LD in a file. The user types the filename using uiputfile
[file,path] = uiputfile('*.m','Save file name');
if file~=0
save(fullfile(path,file), LD)
end
error:
??? Error using ==> save Argument must contain a string.
Can some one help me pls.

Respuesta aceptada

Walter Roberson
Walter Roberson el 22 de Jul. de 2012
save(fullfile(path,file), 'LD') %note quotes
  3 comentarios
Thulasi Durai Durai Samy
Thulasi Durai Durai Samy el 22 de Jul. de 2012
Hello Walter Roberson
ya! the error I made is
uiputfile('*.m','Save file name');
should have extension *.mat,
thanks for advice!
Thulasi Durai Durai Samy
Thulasi Durai Durai Samy el 22 de Jul. de 2012
Hello Walter Roberson
If I save handle of an objects does this reference to the objects handle remain same if I reload the handle

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by