What is the best way to store different variables into 1 variable?
4 ビュー (過去 30 日間)
古いコメントを表示
I need to take a bunch of coordinate points that I have stored in a variable, and sort them in groups of the ten closest endpoint triplet groups to each other triplet. Then, I need to store them along with another group of coordinate points that correspond to the central points of each of these triplets. What's the best way to do this? The attached file contains all the (x,y) coordinates for the endpoint triplets (first 6 columns), and the central points (last two columns) Thanks in advance for your help!
0 件のコメント
回答 (1 件)
John D'Errico
2019 年 10 月 15 日
編集済み: John D'Errico
2019 年 10 月 15 日
Use a cell array. Or use a srruct. Either can store anything you put into it.
Here, a struct will allow you to store everything with a name attached to each field, so it will be arguably a better choice. And you can have arrays of structs.
5 件のコメント
Walter Roberson
2019 年 10 月 16 日
You overwrite ascendIdx each iteration of the loop, so it is not clear why you would bother to do
ascendIdx(ascendIdx==pt) = []; %remove the pt point
It would make more sense if that was just after the sort()
参考
カテゴリ
Help Center および File Exchange で Shifting and Sorting Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!