【发布时间】:2018-02-11 00:03:07
【问题描述】:
我在 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
【问题讨论】:
标签: matlab matlab-figure