Info

此问题已关闭。 请重新打开它进行编辑或回答。

Why am I getting this error? "Argument to dynamic structure reference must evaluate to a valid field name."

1 次查看(过去 30 天)
I'm simply trying to print a string name for a file I'm importing, and I get this error when I use fprintf: "Argument to dynamic structure reference must evaluate to a valid field name." Here's my code:
%% Import the data files
dr = dir('C:\Users\d-r\Box Sync\DATA\MAIN\training\*psv');
data=[];
for k=1:numel(dr)
data{k,1}.encounter_num = k;
data{k,1}.labs = importData([dr(k).folder filesep dr(k).name]);
data{k,1}.vitals = importData([dr(k).folder filesep dr(k).name]);
fprintf('Importing %s\n',dr.(k).name)
end
Please help, thx!

回答(1 个)

Walter Roberson
Walter Roberson 2019-9-12
In the fprintf you have dr.(k).name when you should have had dr(k).name

此问题已关闭。

标签

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by