概述
The imagesc function scales image data to the full range of the
current colormap and displays the image .
把图像数据绽放到当前颜色表(色度表),并显示此图像
imagesc(A) : 将矩阵A中的元素数值按大小映射为不同颜色,并在坐标轴对应位置处以这种颜色染色
imagesc(x , y , A) : x , y决定坐标范围,x,y应是两个一维向量,即x = [x1 , x2] , y
= [y1 , y2],matlab会在[x1 , x2]*[y1
y2]的范围内显示A(也即把整个图在上面标定的矩形区域中显示)。如果x,y是两个标量,则此图像移动到以(x,y)为左上起点的位置。
imagesc(... ,
clims):clims是一个二元向量(内部存放限制A的值的最大值和最小值),如果A中的值在二元向量标定的范围之内,则值不变;若大于标定范围,则值变为最大值;若小于标定范围,则值变为最小值。并显示此图像。
h = imagesc(...) : return the handle for an image graphic object
.
imagesc('PropertyName' , PropertyValue , ...)
:是显示亮度图像的低级语法。它把指定的属性名/属性值当作输入的一对参数。
可以有两种方式来设置和询问图形对象的属性:
一、使用属性编辑器
二、使用set和get命名
set : Set Handle Graphics object properities
set(H , 'PropertyName' , PropertyValue , ...)
:把指定的值设置为指定Handle所关联的对象的指定属性。如果H是一个句柄向量,则对每个对象进行相应的操作。
set(H , a):a是一个structure array它的field names是对象属性名,它的field
value是相对应的属性值。设置H关联的对象的指定属性名为指定属性值。
set(H , pn , MxN_pv):对m个graphics对象设置n个属性值。m=legth(H),n is equal
to the number of property names contained in the cell array pn ,
MxN_pv为相应的属性值。
a = set(h):返回h所关联的对象中用户可以设置的属性及相应属性的可能属性值。a是一个structure
array它的field names是对象的属性名,它的field
value是相应属性的可能属性值。如果没有指定输出参数,MATLAB会在屏幕上显示相应信息。
pv = set(h , 'PropertyName'):返回属性名的可能属性值。
get : Query Handle Graphics object properties
get(h):返回句柄关联对象的所有属性值,h是标量
get(h , 'PropertyName'):返回句柄关联对象指定的属性值
= get(H , pn):返回m=length(H)个图形对象的n(存放属性名的pn中的元素个数)个属性值
a = get(h) :返回一个structure,它的field
names是属性名,它的values是相关属性名的当前属性值。
a = get(0 , 'Factory'):returns the factory-defined values of all
user-settable properties.
a = get(0 , 'FactoryObjectTypePropertyName'):returns the
factory-defined value of the named property for the specifed object
type.
a = get(h , 'Default'):returns all default values currently
defined on object h .
a = get(h , 'DefaultObjectTypePropertyName'):returns the
factory-defined value of the named property for the specified
object type.
最后
以上就是感动电灯胆为你收集整理的matlab pv图,Matlab中imagesc的全部内容,希望文章能够帮你解决matlab pv图,Matlab中imagesc所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复