• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

MATLAB——颜色梯度显示

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

一、colormap函数

figure
surf(peaks)
 k=1000;
 mycolor=spring(k);
colormap(mycolor);

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

 

figure
surf(peaks)
colormap summer

 

二、colorbar函数

(1)

figure
surf(peaks)
colormap summer
colorbar

(2)调整colorbar颜色

figure
surf(peaks)
colormap
colorbar

在编辑中找到颜色编辑器

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

 

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

clear all
figure
contourf(peaks)
colorbar(\'southoutside\')

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

clear all
figure
contourf(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] = caxis
caxis([0,cmax])%改变颜色块的值

 

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

%将0以下的由深蓝变成黑色
map = colormap;
map(1,:) = [0 0 0];
colormap(map)

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Matlab画图线型、符号及颜色汇总发布时间:2022-07-18
下一篇:
MATLAB实例:绘制条形图发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap