I want to generate Three different random Communication Channels and sort it. Please help
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
PRADEEP KUMAR
am 30 Jul. 2021
Kommentiert: PRADEEP KUMAR
am 30 Jul. 2021
h1=(randn(1)+1j*randn(1));
h2=(randn(1)+1j*randn(1));
h3=(randn(1)+1j*randn(1));
z=sort(h1,h2,h3)
Error using sort
Dimension argument must be a positive integer.
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 30 Jul. 2021
h1=(randn(1)+1j*randn(1));
h2=(randn(1)+1j*randn(1));
h3=(randn(1)+1j*randn(1));
z=sort([h1,h2,h3])
Note that by default, sort() operates along the first non-scalar dimension, so if you were to use vectors you would have to be careful about how you sorted.
h1=(randn(5,1)+1j*randn(5,1));
h2=(randn(5,1)+1j*randn(5,1));
h3=(randn(5,1)+1j*randn(5,1));
z=sort([h1,h2,h3], 2) %sort along rows
However... you need to be clearer as to what it means to you to sort complex data. MATLAB has a meaning for sorting complex data, but it is not likely that MATLAB's meaning is the same as what you want.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Propagation and Channel Models 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!