Effacer les filtres
Effacer les filtres

How to pick all elements from a set that satisfy a certain condition?

20 vues (au cours des 30 derniers jours)
Adrian
Adrian le 9 Juil 2024 à 18:06
Modifié(e) : Fangjun Jiang le 9 Juil 2024 à 19:37
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.

Réponse acceptée

Fangjun Jiang
Fangjun Jiang le 9 Juil 2024 à 18:12
Modifié(e) : Fangjun Jiang le 9 Juil 2024 à 19:37
A=[-5,-4,-3,-2,-1,0,1,2,3,4,5];
index=(A+A')==1;
[I,J]=find(index);
A([I,J])
ans = 10x2
5 -4 4 -3 3 -2 2 -1 1 0 0 1 -1 2 -2 3 -3 4 -4 5
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>

Plus de réponses (0)

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by