getting specific data out of struct (if statement error)
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Ameer Hamza
2018 年 5 月 19 日
if contains(x.osm.relation.member{1, i}.Attributes.type, 'way')
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Structures についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!