every second label is showed in corr.matrix only, why?

6 ビュー (過去 30 日間)
ETH
ETH 2013 年 3 月 15 日
when i tipe in the code below, every second axes is shown only. this means the first point is not named at all, the second is named after the first ones name, the third is not named, the fourth has the name of the second value on that axis. I dont get why. do you? thanks a lot
[r,p] = corrcoef(x); % Compute sample correlation and p-values.
imagesc(p); % plot the matrix set(gca, 'XTick'); % center x-axis ticks on bins set(gca, 'YTick'); % center y-axis ticks on bins set(gca,'XTickLabel',{'1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19'}) set(gca,'YTickLabel',{'1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19'}) title('Correlation Matrix', 'FontSize', 12); % set title colormap('jet'); % set the colorscheme colorbar

回答 (2 件)

owr
owr 2013 年 3 月 15 日
You set the labels, but not the ticks themselves. Try something like this:
set(gca, 'XTick',1:19);
set(gca,'XTickLabel',{'1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19'})

ETH
ETH 2013 年 3 月 18 日
Thanks a lot, your hint was implemented and worked perfectly fine!!! was my first question here, i am astonished! cheers
  1 件のコメント
Jan
Jan 2013 年 3 月 18 日
Please post comments in the comment section, when they are not answers. Otherwise it will look confusing, if more answers are appended. Thanks.

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by