load syntax

3 visualizaciones (últimos 30 días)
Hassan
Hassan el 9 de Jun. de 2011
I am using the following code to load a MAT file. It's not working. It works if I simply type Load 'C:\Data.mat' but if I use Load fname_ it wont work. Could you please tell me if I am missing anything in the code?
[FileName,PathName] = uigetfile('C:\Data.mat'); fname_=strcat(PathName,FileName); load -MAT fname_

Respuesta aceptada

Arnaud Miege
Arnaud Miege el 9 de Jun. de 2011
Use the function syntax rather than the command syntax:
load(fname_,'-mat')
For more details on the function vs. command syntax, see the documentation.
HTH,
Arnaud
  1 comentario
Hassan
Hassan el 9 de Jun. de 2011
thanks a lot Arnaud.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by