How to pick all elements from a set that satisfy a certain condition?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Let's say I have a set of numbers A=-5,-4,-3,-2,-1,0,1,2,3,4,5
and I want to pick those pairs that give a sum of 1. For example, -2 and 3 is one possible pair, but how do we display all such pairs?
Any help will be much appreciated.
0 Commenti
Risposta accettata
Fangjun Jiang
il 9 Lug 2024
Modificato: Fangjun Jiang
il 9 Lug 2024
A=[-5,-4,-3,-2,-1,0,1,2,3,4,5];
index=(A+A')==1;
[I,J]=find(index);
A([I,J])
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!