Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

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

1 visualizzazione (ultimi 30 giorni)
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!

Risposte (1)

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

Questa domanda è chiusa.

Tag

Prodotti


Release

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by