标签: matlab matlab-figure correlation axes annotate
我想使用如下图所示的彩条来注释MATLAB中相关矩阵图的x和y轴的各段:
goal correlation plot
这是我现在拥有的代码:
b = imagesc(data); hold on title('Correlation plot', 'FontSize', 14); % set title colormap('jet'); % set the colorscheme colorbar; % enable colorbar hold off
其输出以下图:
current correlation plot
我该如何在第一张图像的x和y轴上包含颜色栏?