Info
この質問は閉じられています。 編集または回答するには再度開いてください。
how to identify a row given a value in the stuct file
2 ビュー (過去 30 日間)
古いコメントを表示
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?

0 件のコメント
回答 (1 件)
Bob Thompson
2018 年 9 月 13 日
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 件のコメント
Bob Thompson
2018 年 9 月 13 日
Try [data_map.link_id], rather than the unbracketed version I sent before.
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!