Matlab struct with names and sizes of the mat.file

9 visualizaciones (últimos 30 días)
Robert Bag
Robert Bag el 12 de Mayo de 2021
Comentada: Walter Roberson el 13 de Mayo de 2021
Hi, I am trying to create a function that asks for mat.file and then I would like t o create a struct which returns the name and size of the variables in the mat.file.
Anyone who knows how to do that?

Respuestas (1)

Walter Roberson
Walter Roberson el 12 de Mayo de 2021
Use whos() with the '-file' option and extract the required data from that.
  11 comentarios
Robert Bag
Robert Bag el 13 de Mayo de 2021
Walter, is there any way to get whos to obly display specific fields?
Walter Roberson
Walter Roberson el 13 de Mayo de 2021
whos() is built-in, so I cannot look at the source code for it. There is no documented way to get whos() to only display specified fields.
But why are you asking about displaying fields? Your question and comments indicate that you want the information returned as a struct with field 'name' and 'size' . Displaying is a different task.
The below code has been constructed to mimic the output of whos. It might have some fine details wrong about automatic sizing or justification of field widths.
function info = fileinfo(filename)
if ~exist(filename, 'file')
error(message('MATLAB:whos:fileIsNotThere', filename));
end
tinfo = whos('-file', filename);
if nargout > 0
info = struct('name', {tinfo.name}, 'size', {tinfo.size});
else
fields = ["name", "size"; "", ""; string({tinfo.name}.'), cellfun(@(S) strjoin(arrayfun(@string,S),'x'), {tinfo.size}.')];
L = strlength(fields);
widths = max(L,[],1);
fmt = compose(" %%-%ds %%-%ds", max([14, 0], widths));
fprintf('%s\n', compose(fmt, fields(:,1), fields(:,2)))
end
end

Iniciar sesión para comentar.

Categorías

Más información sobre Workspace Variables and MAT-Files 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