Matlab struct with names and sizes of the mat.file

조회 수: 8 (최근 30일)
Robert Bag
Robert Bag 2021년 5월 12일
댓글: Walter Roberson 2021년 5월 13일
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?

답변 (1개)

Walter Roberson
Walter Roberson 2021년 5월 12일
Use whos() with the '-file' option and extract the required data from that.
  댓글 수: 11
Robert Bag
Robert Bag 2021년 5월 13일
Walter, is there any way to get whos to obly display specific fields?
Walter Roberson
Walter Roberson 2021년 5월 13일
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

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT-Files에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by