Add XTickLabels names from cells array
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Stefano Cucchi
am 25 Jan. 2022
Kommentiert: Stefano Cucchi
am 25 Jan. 2022
Hello,
i need to add label names to a bar plot. Every bar refers to a channel name that is contained in a cell array named "nome_canali". 

The total number of bars (N) is n_canali*n_try :Example: (n_canali=5, n_try=2 => N=10). So, i need to reiterate the names of the cell array two times in order to give to each bar his name instead of the numbers.

I tried with this but obviously it doesn't work:
- figure
- subplot(2,1,1)
- bar(RMS)
- set(gca,'XTick',[1:(n_canali*n_try)],'XTickLabel',{nome_canali});
How can i solve this problem?
Thank you, Stefano
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Annotations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!