Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How to obtain a plot of some complex function with imaginary and real interval

1 vue (au cours des 30 derniers jours)
Ertugrul Gazi Cam
Ertugrul Gazi Cam le 16 Nov 2020
Clôturé : MATLAB Answer Bot le 20 Août 2021
Hello guys,im new on matlab and i need your help.any comment would be appreciated.
thats the my question:
i have a laplace function which is 𝐺(𝑠) = (s-1)/ (s^3+4s^2+7s+6)
s: circle in s-plane with center at −1.5 + 0.75𝑖 and radius 2
how can i calculate the outputs of this function and plot them wrt given input above?
regards.
  2 commentaires
KSSV
KSSV le 16 Nov 2020
Read about imag, real.
Ertugrul Gazi Cam
Ertugrul Gazi Cam le 16 Nov 2020
how ? could you please be more precise

Réponses (1)

Setsuna Yuuki.
Setsuna Yuuki. le 16 Nov 2020
Modifié(e) : Setsuna Yuuki. le 16 Nov 2020
You can separate in real and imaginary components.
A example :
var = -1.5+0.75i;
realCom = real(var); %only real part
imagCom = imag(var); %only complex part
you can use these numbers as (x, y) coordinates
  1 commentaire
Ertugrul Gazi Cam
Ertugrul Gazi Cam le 16 Nov 2020
thanks your answer .what would you write as code if you want to plot the outputs in s plane wrt given function in this input domain ? i want to see them and so that understand it basically

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by