资源描述:
《matlab plot函数说明,坐标轴,legend函数基本用法》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、matlabplot函数说明,坐标轴,legend函数的基本用法matlabplot函数说明,坐标轴,legend函数的基本用法默认分类2010-08-1911:39:41阅读101评论0字号:大中小订阅.plot函数可以接一些参数,来改变所画图像的属性(颜色,图像元素等)。下面是一些属性的说明bblue(蓝色).point(点)-solid(实线)ggreen(绿色)ocircle(圆圈):dotted(点线)rred(红色)xx-mark(叉号)-.dashdot(点画线)ccyan(墨绿色)+plus(加号)--dashed(虚线)mmagenta(紫红色)*star(星号)(no
2、ne)nolineyyellow(黄色)ssquare(正方形)kblack(黑色)ddiamond(菱形)vtriangle(down)^triangle(up)triangle(right)ppentagramhhexagramExamplex=-pi:pi/10:pi;y=tan(sin(x))-sin(tan(x));plot(x,y,'--rs','LineWidth',2,...'MarkerEdgeColor','k',...'MarkerFaceColor','g',...'MarkerSize',10)xlabel('x');ylabel
3、('y');·用Matlab画图时,有时候需要对各种图标进行标注,例如,用“+”代表A的运动情况,“*”代表B的运动情况。legend函数的基本用法是LEGEND(string1,string2,string3,...)分别将字符串1、字符串2、字符串3……标注到图中,每个字符串对应的图标为画图时的图标。例如:plot(x,sin(x),'.b',x,cos(x),'+r')legend('sin','cos')这样可以把"."标识为'sin',把"+"标识为"cos"还可以用LEGEND(...,'Location',LOC)来指定图例标识框的位置这些是Matlabhelp文件。后面一
4、段是对应的翻译和说明'North'insideplotboxneartop'South'insidebottom'East'insideright'West'insideleft'NorthEast'insidetopright(default)'NorthWestinsidetopleft'SouthEast'insidebottomright'SouthWest'insidebottomleft'NorthOutside'outsideplotboxneartop'SouthOutside'outsidebottom'EastOutside'outsideright'WestOuts
5、ide'outsideleft'NorthEastOutside'outsidetopright'NorthWestOutside'outsidetopleft'SouthEastOutside'outsidebottomright'SouthWestOutside'outsidebottomleft'Best'leastconflictwithdatainplot'BestOutside'leastunusedspaceoutsideplot'North'图例标识放在图顶端'South'图例标识放在图底端'East'图例标识放在图右方'West'图例标识放在图左方'NorthEast'
6、图例标识放在图右上方(默认)'NorthWest图例标识放在图左上方'SouthEast'图例标识放在图右下角'SouthWest'图例标识放在图左下角(以上几个都是将图例标识放在框图内)'NorthOutside'图例标识放在图框外侧上方'SouthOutside'图例标识放在图框外侧下方'EastOutside'图例标识放在图框外侧右方'WestOutside'图例标识放在图框外侧左方'NorthEastOutside'图例标识放在图框外侧右上方'NorthWestOutside'图例标识放在图框外侧左上方'SouthEastOutside'图例标识放在图框外侧右下方'SouthWe
7、stOutside'图例标识放在图框外侧左下方(以上几个将图例标识放在框图外)'Best'图标标识放在图框内不与图冲突的最佳位置'BestOutside'图标标识放在图框外使用最小空间的最佳位置还是用上面的例子legend('sin','cos','location','northwest')可以将标识框放置在图的左上角。Examples:x=0:.2:12;plot(x,bessel(1,x),x,bessel(2,x),x,be