Showing x-axis & y-axis

hello am supposed to use fplot command to plot the function sin(x)+cos(0.75x) in the interval [0 15]
so i write :
fplot('sin(x)+cos(0.75*x)',[0 15])
The problem is that there is no y-axis and x-axis in the graph how can i display them?
NOTE: am using Matlab 6.1

回答 (4 件)

talal abulnaja
talal abulnaja 2023 年 3 月 29 日

4 投票

try
xline(0);
yline(0);
Paulo Silva
Paulo Silva 2011 年 3 月 1 日

1 投票

After plotting that function do:
get(gca)
See the last property, visible, if it's off turn it on
axis on
I don't have that version of matlab, sorry if my answer doesn't help you.
Andrew Newell
Andrew Newell 2011 年 3 月 1 日

0 投票

Have you tried
axis on
?
Swati Bhargava
Swati Bhargava 2022 年 9 月 3 日
編集済み: Swati Bhargava 2022 年 9 月 3 日

0 投票

I am facing same issue when using fplot. I tried using axis on, but that does not help! Using grid on helps, but creates entire grid!
axis on; %does not help
grid on %helps, but more lines than needed!

カテゴリ

ヘルプ センター および File ExchangeLine Plots についてさらに検索

タグ

質問済み:

2011 年 3 月 1 日

回答済み:

2023 年 3 月 29 日

Community Treasure Hunt

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

Start Hunting!

Translated by