Contrast problem using surf plot in subplot
9 次查看(过去 30 天)
显示 更早的评论
I'm trying to create a subplot containing 4 surf' with three a ranged colormap (white,red,green), the problem is that when I call subplot my surf plots become so small all parts seem the same way, I have to zoom a lot so I can see the difference.
subplot(2,2,i); surf(access);
view(0,90);
map = [1 1 1;1 0 0;0 1 0];
colormap(map);
axis equal;
2 个评论
VBBV
2020-12-6
Specify different X, Y limits e.g. 80 to 120 inside the surf or contourf functions for each subplots. Also ensure that Z matrix has dimensions agreeing the new X,Y range
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Subplots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!