MATLAB——颜色梯度显示
发布日期:2021-08-12 01:50:54 浏览次数:1 分类:技术文章

本文共 1152 字,大约阅读时间需要 3 分钟。

一、colormap函数

figuresurf(peaks) k=1000; mycolor=spring(k);colormap(mycolor);

spring是颜色的分类。spring(k)生成k个梯度的渐变颜色值。

 

figuresurf(peaks)colormap summer

 

二、colorbar函数

(1)

figuresurf(peaks)colormap summercolorbar

(2)调整colorbar颜色

figuresurf(peaks)colormapcolorbar

在编辑中找到颜色编辑器

双击增加颜色块,delete减少颜色块,调整颜色即可

 

(3)位置调整和字体大小

clear allfigurecontourf(peaks)colorbar('southoutside')

clear allfigurecontourf(peaks)colorbar('southoutside','Ticks',[-5,-2,1,4,7],...         'TickLabels',{'Cold','Cool','Neutral','Warm','Hot'})

clear allfigurecontourf(peaks)c=colorbar('southoutside','Ticks',[-5,-2,1,4,7],...         'TickLabels',{'Cold','Cool','Neutral','Warm','Hot'},'fontsize',12)c.Label.String = 'Elevation (ft in 1000s)'; c.Label.FontSize = 15;

(4)调整高度

clear all[X,Y,Z] = peaks(30);surf(X,Y,Z)colorbar[cmin,cmax] = caxis

上面可以看到整个的数据组织形式,,x,y形成一个二维网格,z是对应点的高度,三维化就得到了如上的图,caxis找到极值点。

 

clear all[X,Y,Z] = peaks(30);surf(X,Y,Z)colorbar[cmin,cmax] = caxiscaxis([0,cmax])%改变颜色块的值

 

clear all[X,Y,Z] = peaks(30);surf(X,Y,Z)colorbar[cmin,cmax] = caxiscaxis([0,cmax])%将0以下的由深蓝变成黑色map = colormap;map(1,:) = [0 0 0];colormap(map)

 

转载于:https://www.cnblogs.com/ruo-li-suo-yi/p/7654973.html

转载地址:https://blog.csdn.net/weixin_30642305/article/details/96027450 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:Daily Scrumming* 2015.10.25(Day 6)
下一篇:DBus在Hi3515中的移植

发表评论

最新留言

很好
[***.229.124.182]2024年03月25日 14时08分57秒