フィルターのクリア

Add XTickLabels names from cells array

8 ビュー (過去 30 日間)
Stefano Cucchi
Stefano Cucchi 2022 年 1 月 25 日
コメント済み: Stefano Cucchi 2022 年 1 月 25 日
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

採用された回答

Ankit
Ankit 2022 年 1 月 25 日
編集済み: Ankit 2022 年 1 月 25 日
@Stefano Cucchi I hope this is what you are looking for?
n_canali = 5;
n_try = 2;
nome_canali = {'ai0' 'ai1' 'ai3' 'ai4' 'ai7'};
y = [75 91 105 123.5 131 150 179 203 226 249];
bar(y);
set(gca,'XTick',1:(n_canali*n_try),'XTickLabel',nome_canali);
  1 件のコメント
Stefano Cucchi
Stefano Cucchi 2022 年 1 月 25 日
Now it's working! It was a small mistake.
Thank you!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by