r********g 发帖数: 868 | 1 Are there any commands to do that? Thanks |
b*******2 发帖数: 2121 | 2 x=1; y=1; plot(x,y,'o');
不好意思,第一天学matlab,试一下手。。。
【在 r********g 的大作中提到】 : Are there any commands to do that? Thanks
|
z***f 发帖数: 121 | 3 牛,你老板不给你钱还真对了,服了u
【在 b*******2 的大作中提到】 : x=1; y=1; plot(x,y,'o'); : 不好意思,第一天学matlab,试一下手。。。
|
k**f 发帖数: 372 | 4
t = (0:359)/180*pi;
x = cos(t); y = sin(t);
plot(x, y);
axis square; % without, the circle looks distorted
% search "aspect ratio" in matlab help for more information
【在 r********g 的大作中提到】 : Are there any commands to do that? Thanks
|
r********g 发帖数: 868 | 5 非常感谢。
如果要画一个圆盘,那又该如何实现呢?(圆和圆里面都一样)
【在 k**f 的大作中提到】 : : t = (0:359)/180*pi; : x = cos(t); y = sin(t); : plot(x, y); : axis square; % without, the circle looks distorted : % search "aspect ratio" in matlab help for more information
|
r********g 发帖数: 868 | 6 找到了fill函数可以做这个。
我需要的是在一灰度图像里面,画8个圆,每个圆的灰度值不一样,不知道可不可以实
现。
【在 r********g 的大作中提到】 : 非常感谢。 : 如果要画一个圆盘,那又该如何实现呢?(圆和圆里面都一样)
|
r********g 发帖数: 868 | 7 已经实现,非常谢谢
【在 r********g 的大作中提到】 : 找到了fill函数可以做这个。 : 我需要的是在一灰度图像里面,画8个圆,每个圆的灰度值不一样,不知道可不可以实 : 现。
|
b*******2 发帖数: 2121 | 8 拿去运行一下,看有没有circle。。。
【在 z***f 的大作中提到】 : 牛,你老板不给你钱还真对了,服了u
|
X*****r 发帖数: 2521 | 9 你怎么不用粉笔在显示器上画个圈
【在 b*******2 的大作中提到】 : 拿去运行一下,看有没有circle。。。
|
b*******2 发帖数: 2121 | 10 呵呵,他说要用matlab阿。。。
我就试了一下阿。
看来我这着不行。。。
【在 X*****r 的大作中提到】 : 你怎么不用粉笔在显示器上画个圈
|