Finding corresponding values between vectors
2 ビュー (過去 30 日間)
古いコメントを表示
umps_land is a vector and a subset of vector umps. The subset was selected graphically using the brush. vmps is a vector the same size as umps. I want to (non-graphically) find the values of vmps that correspond to umps_land and call it vmps_land. How do I accomplish this seemingly easy operation? (and why can't I find documentation on this??)
4 件のコメント
Guillaume
2015 年 6 月 11 日
@Rong Yu, in the future post your answer as an answer rather than a comment to the question. That way the OP can accept your answer and you get reputation.
採用された回答
Rong Yu
2015 年 6 月 11 日
Try ismember
index = ismember(umps,umps_land);
vmps_land = vmps(index);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!