how to display connection?
3 ビュー (過去 30 日間)
古いコメントを表示
hi, i have a situation like this. x1=10, x2=15,x3=30. i need to check whether x1 is connected to x2 and whether x1 is connected to x3. if the distance between them is less than 10, then they are connected. i need a feedback like 'x1 and x2 are connected', or x1 and x3 are not connected. assuming i have a lot of points to check, how should i do it?
0 件のコメント
回答 (1 件)
Roger Stafford
2015 年 3 月 22 日
I can give you a few ideas. If the x values were all elements of a single vector, you could use for-loops to make comparisons between each pair of values in the vector. There is also a way of using 'bsxfun' to make the same comparisons in a vectorized manner. However, finally, if the elements in this vector were placed in ascending order it would not really be necessary to compare every possible pair. With fewer comparisons you could deduce all the rest. Does this succeed in giving you ideas?
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!