y**y 发帖数: 25 | 1 有三组二维矩阵:X,Y,Z,
X,Y是坐标点,Z代表点上的值,
想把Z在2D平面上用点显示,并且用颜色来代表不同的值分布,
matlab中有没有函数可以这样显示? |
l*****i 发帖数: 3929 | 2 mesh or surf?
【在 y**y 的大作中提到】 : 有三组二维矩阵:X,Y,Z, : X,Y是坐标点,Z代表点上的值, : 想把Z在2D平面上用点显示,并且用颜色来代表不同的值分布, : matlab中有没有函数可以这样显示?
|
j**u 发帖数: 6059 | 3 imagesc
【在 y**y 的大作中提到】 : 有三组二维矩阵:X,Y,Z, : X,Y是坐标点,Z代表点上的值, : 想把Z在2D平面上用点显示,并且用颜色来代表不同的值分布, : matlab中有没有函数可以这样显示?
|
y**y 发帖数: 25 | 4 this is not what I want either.
I need point show, not block show.
【在 j**u 的大作中提到】 : imagesc
|
s**i 发帖数: 381 | 5 there is a code called bubbleplot
you can check it out.
Also there is a 3D version called bubbleplot3
【在 y**y 的大作中提到】 : 有三组二维矩阵:X,Y,Z, : X,Y是坐标点,Z代表点上的值, : 想把Z在2D平面上用点显示,并且用颜色来代表不同的值分布, : matlab中有没有函数可以这样显示?
|
j**u 发帖数: 6059 | 6 原来你要画成这样。你可以设置自己的colormap,把你的Z值对应到colormap,这样画
点就可以画上不同的颜色。
【在 y**y 的大作中提到】 : this is not what I want either. : I need point show, not block show.
|
j**u 发帖数: 6059 | 7 原来已经有现成的了。
【在 s**i 的大作中提到】 : there is a code called bubbleplot : you can check it out. : Also there is a 3D version called bubbleplot3
|
y**y 发帖数: 25 | 8 thanks,
but this bubbleplot is not exactly designed to work for my case.
I thought my problem should be very simple to solve in matlab.
but I just can't find a good function to do it...
【在 s**i 的大作中提到】 : there is a code called bubbleplot : you can check it out. : Also there is a 3D version called bubbleplot3
|
y**y 发帖数: 25 | 9 ok,
seems to me "scatter" could do the job.
but need to transfer matrix data structure to vector first.
【在 y**y 的大作中提到】 : 有三组二维矩阵:X,Y,Z, : X,Y是坐标点,Z代表点上的值, : 想把Z在2D平面上用点显示,并且用颜色来代表不同的值分布, : matlab中有没有函数可以这样显示?
|