How to index tables in a struct? (to call each field from App Designer)
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
yvesvincent abgrall
il 6 Set 2019
Modificato: Stephen23
il 6 Set 2019
Hello,
I'm facing a problem while coding on App Designer. I have saved a workspace made of diferent tables.
The tables are created this way:
a{1}=
a{2}=
a{3}=
etc...
I created it this way to be able to call them in the code on App Designer (in which I have imported the workspace with the command "load") in a loop, for example:
app.data = load('workspace.mat'); % command used to load the workspace in App Designer
for i = 1 : numel(fieldnames(app.data))
disp(app.data.a(i)) %here is the problem
end
Matlab send me an error when executing this or any combination of app.data.a with (i) or {i} ...
A "a" field of cell type is beeing created when running the workspace but this same "a" clas isn't loaded with the rest of the fields when importing in App Designer.
Thanking you in advance for your help :)
7 Commenti
Stephen23
il 6 Set 2019
Modificato: Stephen23
il 6 Set 2019
@yvesvincent abgrall your description and your actual data are very different. What you showed in your question uses indexing into a cell array or table, e.g.:
"The tables are created this way:"
a{1}=
a{2}=
a{3}=
etc...
But your response to my request for information shows that in fact you have a whole lot of fields, and indexing is not involved at all. You should revise basic MATLAB concepts, e.g. what is indexing, what are structure fields, etc. as you have mixed them up and provided conflicting information on this thread.
"I started indexing at GT{14}"
In fact you don't, because indices are totally unrelated to fieldnames. Do not confuse them.
Risposta accettata
Più risposte (1)
Steven Lord
il 6 Set 2019
app.data = load('workspace.mat'); % command used to load the workspace in App Designer
for i = 1 : numel(fieldnames(app.data))
disp(app.data.a(i)) %here is the problem
end
This looks suspicious. You're iterating from 1 to the number of fields in app.data, but then you're not using the fieldnames to access the data. I would expect you to use the list of fieldnames in conjunction with dynamic field names.
app.data = load('workspace.mat'); % command used to load the workspace in App Designer
FN = fieldnames(app.data);
for i = 1 : numel(FN)
disp(app.data.(FN{i})) %here is the problem
end
If you need to further index into a table that is one of the fields in app.data, use one of the types of indexing shown on this documentation page. Note in particular that if you're using parentheses or curly braces, you need to specify two indices. Asking for T(1) of a table won't work, but asking for T(1, 1) or T(1, :) of that table would.
0 Commenti
Vedere anche
Categorie
Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!