Find row number of elements
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi, I have a list of branches, BL, and a list of nodes, nodeList.
BL has two columns, containing to-from nodes for each branch. All elements in nodeList are included at least once in BL.
I want to create a list of branches that are connected to one or more nodes in nodeList.
What I want to achieve:
BL =
1 2
1 3
2 4
3 4
4 5
5 6
nodeList =
1
3
tempBranch =
1
2
4
The way I'm doing it now (below) is very ineffective, so I'm hoping someone knows a better way to do this.
Can I do this without loops?
for j = 1:rows %%rows in BL
if BL(j,1) == nodeList(i) || BL(j,2) == nodeList(i)
tempBranch(k) = j;
k = k + 1;
end
end
Thanks!
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 1 Juin 2013
Modifié(e) : Azzi Abdelmalek
le 1 Juin 2013
tempBranch =find(any(ismember(BL,nodeList),2))
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Matrix Indexing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!