please help me with this one

2 views (last 30 days)
Ashutosh  mohan
Ashutosh mohan on 24 Sep 2016
Edited: Walter Roberson on 25 Sep 2016
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

Accepted Answer

Satuk Bugrahan
Satuk Bugrahan on 24 Sep 2016
Edited: Satuk Bugrahan on 24 Sep 2016
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 Comments
Satuk Bugrahan
Satuk Bugrahan on 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 on 25 Sep 2016
ya.. no problem .. i had corrected it myself.. thanks for the code

Sign in to comment.

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!