How to fit num2str into labeling ??
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Isa Duran
il 22 Mag 2014
Commentato: Star Strider
il 22 Mag 2014
Hi Guys
I have trouble with using num2str for labeling x-axis. I'm doing this for get each number of SR on equivalent x-axis. Can anybody tell me what I'm doing wrong ? Now I get the same number of SR in all x-axis.
SR=[23 15 16 17 11] for i=1:length(SR) set(gca, 'XTick',1:length(SR), 'XTickLabel',{num2str(SR(i))}) end
Isa
0 Commenti
Risposta accettata
Star Strider
il 22 Mag 2014
Use a cell array:
figure(1)
plot(1:5, (1:5).^2)
grid
SR=[23 15 16 17 11]
SRC = {SR};
set(gca, 'XTick',1:length(SR), 'XTickLabel',SRC)
You can eliminate the loop.
Più risposte (2)
Vedere anche
Categorie
Scopri di più su Axis Labels in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!