Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

how to identify a row given a value in the stuct file

1 Ansicht (letzte 30 Tage)
Amgad Abuwarda
Amgad Abuwarda am 13 Sep. 2018
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
Hey guys, please have a look at the attached screenshot of a stuct file. Now i need for example to identify the row which has link_id 52852003, and get back the corresponding ST_NM_BASE of this row. how to write this in matlab? would be better if i can write a part of the link_id, not the whole value ( 52852 instead of 52852003 )
any help?

Antworten (1)

Bob Thompson
Bob Thompson am 13 Sep. 2018
Typically, when looking to identify the row of a value you want to use the find() command.
[row, col, val] = find(data_map.link_id==52852003);
This probably won't work perfectly, but it should be a place to start.
  2 Kommentare
Amgad Abuwarda
Amgad Abuwarda am 13 Sep. 2018
it does not work, Error using == Too many input arguments.
Bob Thompson
Bob Thompson am 13 Sep. 2018
Try [data_map.link_id], rather than the unbracketed version I sent before.

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by