hi, I need a positive exponential graph starting from zero. but it shows negative. what could I do now to get a positive exponential graph starting from zero? the coding is as follows,
u=0.02; i=22/7; g=800; l=2;
d=0.1; p=45; m=tand(p);
r=linspace(0,1,100);
a=(r-m*(d+l)).^5-((r-m*1).^5)
q=(i*g*a)./(40*u*m)
plot(r,q)

 採用された回答

madhan ravi
madhan ravi 2019 年 1 月 24 日

2 投票

Add the below two lines at the end of your code
xlim([-1 1]) % if you change the scale it is clear that it starts from zero
grid on

3 件のコメント

Abhinandana R
Abhinandana R 2019 年 1 月 24 日
but sir the q term(y axis) is still negative. I need it in a positive plot
madhan ravi
madhan ravi 2019 年 1 月 24 日
plot(r,abs(q))
Abhinandana R
Abhinandana R 2019 年 1 月 24 日
thank you sir!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by