|
楼主 |
发表于 2009-11-10 09:21
|
显示全部楼层
回复 5楼 ChaChing 的帖子
本帖最后由 牛小贱 于 2015-3-31 09:25 编辑
我试了下子,代码是
- l=0.68;
- x=[1-l/3 1 1+l/3 2-l/3 2 2+l/3 3-l/3 3 3+l/3];
- y=[-0.13845 -0.07156 -0.03686 -0.30236 0.18627 -0.0344 -0.07476 -0.07885 0.02643];
- a=[-0.13845 -0.07156 -0.03686;-0.30236 0.18627 -0.0344; -0.07476 -0.07885 0.02643];
- bar(a,1,'group')
- legend('1','2','3')
- e=[4.6098/160 6.7592/160 0.49255/160 9.3779/160 10.807/160 1.3174/160 9.7185/160 9.7233/160 1.5965/160];
- hold on
- errorbar(x,y,e,'linestyle','none')
- applyhatch(gcf,'\-x.');
复制代码 若原图中有errorbar的图,则调用applyhatch后,图如所下:
本打算先画bar图 ,再调用applyhatch,最后用hold on命令画errorbar图,但发现画不上errorbar,好像一旦调用applyhatch后,图上面就好像禁止再画上其它的东西了
[ 本帖最后由 cc2005726 于 2009-11-10 09:23 编辑 ] |
|