Find the rows have two same elements from a matrix
3 ビュー (過去 30 日間)
古いコメントを表示
I have a matrix (each row represents a traingle and each element represents a vertex ID of that traingle), I want to find which two traingles have two same vertices. This question can be demonstrated by the following example, for a matrix like the following:
1 9 8
2 7 8
5 8 9
6 5 4
7 3 8
5 4 8
the output would be [1, 3], [2, 5], and [3, 6], which are the rows have two same elements.
3 件のコメント
Torsten
2022 年 12 月 11 日
A research is no homework ? Then you don't work at home for your research ?
採用された回答
その他の回答 (1 件)
Matt J
2022 年 12 月 11 日
編集済み: Matt J
2022 年 12 月 11 日
Use edges to get a list of all the edges of the triangulation. Then loop over the list and use edgeAttachments.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!