Output only numbers with complex conjugate

1 Ansicht (letzte 30 Tage)
Ko Fa
Ko Fa am 24 Nov. 2020
Kommentiert: Ko Fa am 24 Nov. 2020
Lets say I have an Array
a = [1+i*0.1, 1-i*0.1, 5-i*0.1, 10+i*0.2, 10-i*0.2]
which only contains complex numbers. I would like my output to only contains those numbers which have an corresponding complex conjugate inside the array e.g.
out = [1+i*0.1 10+i*0.2]
The output could also just contain the complex conjugate, but not both
Any help is greatly appreciated.

Akzeptierte Antwort

Bruno Luong
Bruno Luong am 24 Nov. 2020
a(ismember(a,conj(a))&imag(a)>=0)

Weitere Antworten (1)

Rik
Rik am 24 Nov. 2020
a = [1+1i*0.1, 1-1i*0.1, 5-1i*0.1, 10+1i*0.2, 10-1i*0.2];
b=conj(a);
c=b(ismember(b,a));
d=real(c)+1i*abs(imag(c));
e=unique(d)
e = 1×2
1.0000 + 0.1000i 10.0000 + 0.2000i
(the displaying seems to have some issues, but it is indeed the vector you describe)
  5 Kommentare
Rik
Rik am 24 Nov. 2020
You can also use the 'stable' option in unique if you want to preserve the original order.
Ko Fa
Ko Fa am 24 Nov. 2020
True! Thank you.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Shifting and Sorting Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by