
please help me with this one
2 views (last 30 days)
Show older comments
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
0 Comments
Accepted Answer
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
on 24 Sep 2016
Actually I have realised I just misplaced X and Y axis . I have corrected it . No problem at all , cheers .
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!