Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

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

1 view (last 30 days)
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!

Answers (1)

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

This question is closed.

Tags

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!