Borrar filtros
Borrar filtros

getting specific data out of struct (if statement error)

2 visualizaciones (últimos 30 días)
Timon Niedecken
Timon Niedecken el 19 de Mayo de 2018
Respondida: Ameer Hamza el 19 de Mayo de 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

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 19 de Mayo de 2018
Use contains() or strfind() to compare char arrays or strings.
if contains(x.osm.relation.member{1, i}.Attributes.type, 'way')

Más respuestas (0)

Categorías

Más información sobre Structures en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by