Showing x-axis & y-axis
144 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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
0 commentaires
Réponses (4)
Paulo Silva
le 1 Mar 2011
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.
0 commentaires
Swati Bhargava
le 3 Sep 2022
Modifié(e) : Swati Bhargava
le 3 Sep 2022
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!
0 commentaires
Voir également
Catégories
En savoir plus sur Line Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!