i want to plot 'V' vs 'th' graph:
V = 0:0.2:10
and
th = 90-(2*atand(exp(-((v-1)/2)))) if V>1 and
th = 0 if V<=1
please help

 Réponse acceptée

Satuk Bugrahan
Satuk Bugrahan le 24 Sep 2016
Modifié(e) : Satuk Bugrahan le 24 Sep 2016

1 vote

V=0:0.2:10 ;
th=zeros(1,51);
for n=1:51
if V(n)<=1
th(n)=0 ;
else
th(n)=90-(2*atand(exp(-((V(n)-1)/2)))) ;
end
end
plot (V,th)
title('V vs th')
xlabel('V')
ylabel('th')
This would do it I guess.

3 commentaires

Ashutosh  mohan
Ashutosh mohan le 24 Sep 2016
thanks a lot buddy
Satuk Bugrahan
Satuk Bugrahan le 24 Sep 2016
Actually I have realised I just misplaced X and Y axis . I have corrected it . No problem at all , cheers .
Ashutosh  mohan
Ashutosh mohan le 25 Sep 2016
ya.. no problem .. i had corrected it myself.. thanks for the code

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by