using XtickLabel with fractions and integer numbers
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
sermet
le 11 Jan 2017
Modifié(e) : Sean de Wolski
le 11 Jan 2017
time=[1:1:24];
interval_x_axis=0.5;
set(gca,'XtickLabel',time(1:interval_x_axis:end))
% it gives "Warning: Integer operands are required for colon operator when used as index".
How can I show 1-1.5-2-2.5 on the x axis within plot?
0 commentaires
Réponse acceptée
Sean de Wolski
le 11 Jan 2017
Modifié(e) : Sean de Wolski
le 11 Jan 2017
You can't index into a vector with decimals, i.e. x.5.
time=[1:1:24];
plot(time)
interval_x_axis=0.5;
set(gca,'XTick',time(1):interval_x_axis:time(end))
My guess is you want something like this.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Annotations 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!