How to plot both graphs for the given condition, kindely help!

2 vues (au cours des 30 derniers jours)
DEEPAK KARARWAL
DEEPAK KARARWAL le 15 Juil 2022
Commenté : Voss le 19 Juil 2022
A=2;
thetap=pi/2;
d=6;
z=0:0.1:6;
if (0 < z <= d/2);
y=2*atan(exp(z*sqrt(A)+thetap))-pi/2;
else z > d/2
y=2*atan(exp(-(z-d)*sqrt(A)+thetap))-pi/2;
end
plot(y,z)

Réponse acceptée

Voss
Voss le 15 Juil 2022
A=2;
thetap=pi/2;
d=6;
z=0:0.1:6;
y = zeros(size(z));
idx = 0 <= z & z <= d/2; % I imagine you mean 0 <= z, rather than 0 < z
y(idx) = 2*atan(exp(z(idx)*sqrt(A)+thetap))-pi/2;
y(~idx) = 2*atan(exp(-(z(~idx)-d)*sqrt(A)+thetap))-pi/2;
plot(y,z)
  2 commentaires
DEEPAK KARARWAL
DEEPAK KARARWAL le 19 Juil 2022
thank you sir
Voss
Voss le 19 Juil 2022
You're welcome!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Tags

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by