getting specific data out of struct (if statement error)
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Timon Niedecken
il 19 Mag 2018
Risposto: Ameer Hamza
il 19 Mag 2018
Hi there,
I am trying to get every Member of struct x with the type 'way' into one array. But i get an error Message 'Matrix dimensions must agree.' for my if-clause.
for i = 1:n
if ((x.osm.relation.member{1, i}.Attributes.type == 'way'))
ways(j) = x.osm.relation.member{1, i}.Attributes.ref;
j= j+1;
end
end
0 Commenti
Risposta accettata
Ameer Hamza
il 19 Mag 2018
if contains(x.osm.relation.member{1, i}.Attributes.type, 'way')
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Structures 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!