getting multiple curves instead one single curve

1 vue (au cours des 30 derniers jours)
Vaswati Biswas
Vaswati Biswas le 23 Oct 2021
Commenté : Vaswati Biswas le 23 Oct 2021
I am getting multiple curves instead of getting one curve by using the following code. here ep_1 and ep_2 data I am importing from outside which contains 69 data points.
ep_d=1.3641;
ep= ep_1 +1i*ep_2;
theta =-90:2:90;
lambda = 1240./1.5;
y = lambda./(sqrt((ep_d.*ep)./(ep_d+ep))- sin(theta*(pi/180)));
plot (theta ,real(y) )
I have attached my output but here I am supposed to get only one curve. Kindly help me in this problem. How can I get one curve only?

Réponse acceptée

VBBV
VBBV le 23 Oct 2021
ep_d=1.3641;ep_1 = 1; ep_2 = 2;
ep= ep_1 +1i*ep_2;
theta =-90:2:90;
lambda = 1240./1.5;
y = lambda./(sqrt((ep_d.*ep)./(ep_d+ep))- sin(theta*(pi/180)));
plot (theta ,real(y) )

Plus de réponses (0)

Catégories

En savoir plus sur Fit Postprocessing 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!

Translated by