如何配置色彩映射和颜色条以显示contourf的z值渐变。
cla(handles.axes1);
axes(handles.axes1);
contourf(xC(1,:),yC(:,1),zC,linspace(postTest1.minZ, postTest1.maxZ, 50),'-k');
colormap('Jet');
colorbar('location','eastoutside')
答案 0 :(得分:1)
如果我正确理解您的问题,您希望在colorbar上显示与contourf图上相同数量的颜色级别。要做到这一点,只需将色彩映射限制为相同数量的颜色:
colormap(jet(50));