登录论坛

查看完整版本 : matlab中如何绘制图形符号?


studymore
2008-05-05, 21:22
比如说将两个点用图形符号连接起来。不知道是否有这样的功能?

还有一个问题就是:
set(gca,'XtickMode”,”manual','Xtick',[0 0.2 0.3 0.5 1]);中
gca是个什么东东啊?

wtclaw
2008-05-05, 21:27

plot中就有

gca=get current axes

studymore
2008-05-06, 11:09

plot中就有

gca=get current axes...
非常感谢,plot中的图形符号是否能够设置大小啊?

hzxsyzl943
2008-05-06, 11:17
GCA Get handle to current axis.
H = GCA returns the handle to the current axis in the current
figure. The current axis is the axis that graphics commands
like PLOT, TITLE, SURF, etc. draw to if issued.
Use the commands AXES or SUBPLOT to change the current axis
to a different axis, or to create new ones.

hzxsyzl943
2008-05-06, 11:23
这个可能有用
701