在 Matlab 的 imagesc 图中重新缩放 X 轴

Re-scaling X axis in imagesc plot in Matlab

我在 Matlab 中编写了以下代码来显示不同深浅的红色。如何将子图中的所有 x 轴重新缩放为 0-1?

% create a custome color map
map = zeros(11,3);
reds = 0:0.1:1;
map(:,1) = reds(:);
colormap(map);

figure(1)

depth = [1 2 3 4];
num_depth = length(depth);

for index = 1: num_depth    
    subplot(num_depth,1,index);
    step = 1/(2^depth(index)-1);
    A = 0:step:1;
    imagesc(A);
    axis equal
    set(gca,'ytick',[])
end

但是,imagesc(x,y,C)可以指定图像位置。使用xy指定对应C(1,1)C(m,n)的角点位置。

% create a custome color map
map = zeros(11,3);
reds = 0:0.1:1;
map(:,1) = reds(:);
colormap(map);

figure(1)

depth = [1 2 3 4];
num_depth = length(depth);

for index = 1: num_depth    
    subplot(num_depth,1,index);
    step = 1/(2^depth(index)-1);
    A = 0:step:1;
    imagesc(0:1,0:1,A)
    axis([0 1 0 1])
    set(gca,'ytick',[])
end

输出是: