complex number separate the real signal about imag signal
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
abdullah qasim
le 4 Jan 2019
Commenté : Muhammad Afdal Bau
le 1 Fév 2023
I have a problem with the complex number
comp=a+ib
a1+ib1
a2+ib2
...
...
..
an+ibn
then I separated the real signal about the imaginary signal like this;
real(comp)
imag(comp)
the result is
a
a1
a2
.
.
an
and
b1
b2
.
.
bn
my problem how can I put the sequence the real signal after imag signal as the follow
a
a1
a2
.
.
an
b1
b2
.
.
b2n
1 commentaire
Muhammad Afdal Bau
le 1 Fév 2023
how can i separated about real and imaginary part plot of quaternion function in laplacian using matlab
Réponse acceptée
Jacob Shulman
le 4 Jan 2019
Im not really sure what your asking but if the real part and imaginary part are stored in different arrays you can combine them using
a=real(comp);
b=imag(comp)
c=[a,b];
or look into using the cat function to concatenate them
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Transforms 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!