How to pass a “.mat” file as an argument of user defined function?

2 Ansichten (letzte 30 Tage)
Please write demo code.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 31 Jan. 2016
function listvars(matfilename)
if ~ischar(matfilename) || ~exist(matfilename,'file')
error('argument must be the name of an existing file');
end
try
datastruct = load(matfilename);
catch
error('Failed in loading from file, might not be real .mat file');
end
fn = fieldnames(datastruct);
if isempty(fn)
fprintf('File loaded but it had no variables stored in it\n');
else
nv = length(fn);
fprintf('File "%s" contains the following %d variable(s)\n', matfilename, nv);
for K = 1 : nv
thisvarname = fn{K};
thiscontent = datastruct.(thisvarname);
fprintf('variable "%s", class "%s"\n', thisvarname, class(thiscontent));
end
end

Weitere Antworten (0)

Kategorien

Mehr zu Data Distribution Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by