轴在热图中缩放

时间:2015-03-10 07:26:07

标签: matlab matlab-figure

Pest = gridfit(ke, ks, S.totDis, ke_pts, ks_pts);
imagesc(Pest)
colorbar;  
xlabel('k_e'); ylabel('k_s');

enter image description here

我希望轴的比例是数据的值而不是数据点索引。 这可能是天真的。我是matlab的新手,请帮忙。

编辑:enter image description here 我希望y轴增加而不是减少。

1 个答案:

答案 0 :(得分:1)

嗯,快速查看documentation of imagesc表示您可以使用语法imagesc(x,y,C)指定xy

在您的代码中,这给出了:

Pest = gridfit(ke, ks, S.totDis, ke_pts, ks_pts);
imagesc(ke, ks, Pest)
colorbar;  
xlabel('k_e'); ylabel('k_s');

修改

要使y轴上升,只需使用命令:

axis xy

最佳,