help using Save and load function

2 visualizaciones (últimos 30 días)
oselu
oselu el 20 de Ag. de 2014
Comentada: oselu el 20 de Ag. de 2014
Hello I would like to save a variable into a .dat file using the command window but my save function is now working. I have followed the example from my tutorial book but they are not working.
I would like to save the file and then load it again from the command window. I am currently using R2010a.
all assistance is greatly appreciated thank you
  4 comentarios
oselu
oselu el 20 de Ag. de 2014
x=1:2:10
save ('"C:\Users\user\Documents\MATLAB\test.dat','x','-ascii')
??? Error using ==> save
Unable to write file "C:\Users\user\Documents\MATLAB\test.dat: Invalid argument.
>>
oselu
oselu el 20 de Ag. de 2014
I figured it out Geoff thank you very much

Iniciar sesión para comentar.

Respuestas (1)

Max Müller
Max Müller el 20 de Ag. de 2014
Editada: Max Müller el 20 de Ag. de 2014
I had this Problem once before (i guess). Try to save ur Variable in a .mat file and then load it again. Just try it. Loading form a .dat file is somehow complicated.
X = 1
save('Test.mat','X') % save into the file: Test.mat
clear % deletes all the Variables it the Workspace
load('Test.mat','X') % gives back ur Variable X
  5 comentarios
oselu
oselu el 20 de Ag. de 2014
a =
2
>> save ('"C:\Users\user\Documents\MATLAB\test.dat','a','-ascii') ??? Error using ==> save Unable to write file "C:\Users\user\Documents\MATLAB\test.dat: Invalid argument.
>>
oselu
oselu el 20 de Ag. de 2014
I figured it out thank you very much Adam

Iniciar sesión para comentar.

Categorías

Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by