首页 > 其他 > 详细

matlab colormap

时间:2015-11-16 10:51:28      阅读:408      评论:0      收藏:0      [点我收藏+]

This table lists the built-in colormaps functions.

Colormap NameColor Scale
parula 技术分享
jet
hsv
hot
cool
spring
summer
autumn
winter
gray
bone
copper
pink
lines

技术分享

colorcube
prism
flag
white

Custom Colormap

To create a custom colormap, specify map as a three-column matrix of RGB triplets where each row defines one color. An RGB triplet is a three-element row vector whose elements specify the intensities of the red, green, and blue components of the color. The intensities must be in the range [0,1]. For example, this matrix defines a colormap containing five colors.

map = [0.2, 0.1, 0.5
    0.1, 0.5, 0.8
    0.2, 0.7, 0.6
    0.8, 0.7, 0.3
    0.9, 1, 0];

matlab colormap

原文:http://www.cnblogs.com/arxive/p/4968192.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!