Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

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

1 vue (au cours des 30 derniers jours)
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!

Réponses (1)

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

Cette question est clôturée.

Tags

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by