How can I add a diagonal gradient and corresponding colorbar to a plot?
3 次查看(过去 30 天)
显示 更早的评论
This is what I'd like to create with my own data, how can I add that gradient and colorbar to my plot
0 个评论
采纳的回答
darova
2019-9-23
An example:
[X,Y] = meshgrid(1:0.1:3);
Z = X+Y;
pcolor(X,Y,Z)
shading interp
colorbar('Location','NorthOutside')
You can also create your own colormap
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Colormaps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!