欢迎来到淘文阁 - 分享文档赚钱的网站! | 帮助中心 好文档才是您的得力助手!
淘文阁 - 分享文档赚钱的网站
全部分类
  • 研究报告>
  • 管理文献>
  • 标准材料>
  • 技术资料>
  • 教育专区>
  • 应用文书>
  • 生活休闲>
  • 考试试题>
  • pptx模板>
  • 工商注册>
  • 期刊短文>
  • 图片设计>
  • ImageVerifierCode 换一换

    科学计算科学计算 (23).pdf

    • 资源ID:67732326       资源大小:781.59KB        全文页数:17页
    • 资源格式: PDF        下载积分:8金币
    快捷下载 游客一键下载
    会员登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录   QQ登录  
    二维码
    微信扫一扫登录
    下载资源需要8金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    科学计算科学计算 (23).pdf

    AnnotationsAxes appearanceRetain plot when adding new plotsDivide the figure4 4.2 2 FormattingFormatting andand AnnotationAnnotation1 1AnnotationsAnnotationstitlexlabelylabeltextlegend(1)The title Function Basic Syntaxtitle(txt)x=-2*pi:0.05:2*pi;y=sin(x);plot(x,y)title(y=sin(x)title(MATLAB,y=sin(x)1 1AnnotationsAnnotationsExample 1 Plot sine over-2,2,and add a title to the plot.title(y=cosomegat)title(y=eaxt)title(X_1geqX_2)title(bfy=cosomegat+beta)Font ModifierDescriptionbfBold fontitItalic fontrmNormal font1 1AnnotationsAnnotations(1)The title Function TeX MarkupMATLAB supports a subset of TeX markup.Use TeX markup to add superscripts and subscripts,modify the font type and color,and include special characters in the text.Color Text color title(y=cosomegat,Color,r)title(y=cosomegat,FontSize,24)FontSize Title font size1 1AnnotationsAnnotations(1)The title Function Using name-value pair argumentstitle(txt,Name,Value)x=-2*pi:0.05:2*pi;y=sin(x);plot(x,y)title(y=sin(x)xlabel(-2pi leq x leq 2pi)1 1AnnotationsAnnotations(2)The xlabel and ylabel Functionxlabel(txt)ylabel(txt)Plot the sine curve over-2,2,and label the x-axis.text(-2*pi,0,-2pi)text(3,0.28,leftarrow sin(x)1 1AnnotationsAnnotations(3)The text Functiontext(x,y,txt)Add a text description to the previous plot.x=linspace(0,2*pi,100);plot(x,sin(x);sin(2*x);sin(3*x)legend(sin(x),sin(2x),sin(3x)1 1AnnotationsAnnotations(4)The legend Functionlegend(label1,label2,.)Example 2 Plot sine curves with different frequencies and create a legend with descriptive labels for each plotted data series.2 2Axes AppearanceAxes Appearanceaxisgridbox axis(-pi,pi,-4,4)(1)axisBasic syntaxaxis(xmin,xmax,ymin,ymax,zmin,zmax )2 2Axes AppearanceAxes Appearance2 2Axes AppearanceAxes Appearance(2)axisOther axis style and modeaxis equal:Use the same length for the data units along each axis.axis square:Use axis lines with equal lengths.Adjust the increments between data units accordingly.axis auto:Automatically choose all axis limits.axis off:Hide axes lines and background axis on:Display axes lines and background x=0,1,1,0,0;y=0,0,1,1,0;plot(x,y)axis(-0.1,1.1,-0.1,1.1)axis equal;2 2Axes AppearanceAxes Appearancegrid ongrid offgrid2 2Axes AppearanceAxes Appearance(2)Display or hide axes grid linesbox onbox offboxDisplay or hide axes outlinex=linspace(0,2*pi,100);y=sin(x);sin(2*x);sin(0.5*x);plot(x,y)axis(0 7-1.2,1.2)title(不同频率正弦函数曲线不同频率正弦函数曲线);xlabel(Variable X);ylabel(Variable Y);text(2.5,sin(2.5),sin(x);text(1.5,sin(2*1.5),sin(2x);text(5.5,sin(0.5*5.5),sin(0.5x);legend(sin(x),sin(2x),sin(0.5x)grid onExample 3 Plot sinx、sin(2x)、sin(x/2),and add annotations to the plot.3 3Retain plot when adding new plotsRetain plot when adding new plotshold onhold offholdt=linspace(0,2*pi,100);x=sin(t);y=cos(t);plot(x,y,b)hold on;plot(2*x,2*y,r-)grid onaxis(-2.2 2.2-2.2 2.2)axis equalExample 4 Use hold on commamd to plot two concentric circles.subplot:the plot created in an axes.Syntaxsubplot(m,n,p)Arguments m and n specify the figure divided into an m-by-n grid.Argument p specifiesthat the p-th subplot is active plot zone.4 4Divide the figureDivide the figure subplot(2,2,1);x=linspace(0,2*pi,60);y=sin(x);plot(x,y);title(sin(x);axis(0,2*pi,-1,1);x=linspace(0,2*pi,60);subplot(2,2,1)plot(x,sin(x)-1);title(sin(x)-1);axis(0,2*pi,-2,0)subplot(2,1,2)plot(x,cos(x)+1);title(cos(x)+1);axis(0,2*pi,0,2)subplot(4,4,3)plot(x,tan(x);title(tan(x);axis(0,2*pi,-40,40)subplot(4,4,8)plot(x,cot(x);title(cot(x);axis(0,2*pi,-35,35)4 4Divide the figureDivide the figure

    注意事项

    本文(科学计算科学计算 (23).pdf)为本站会员(奉***)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于淘文阁 - 版权申诉 - 用户使用规则 - 积分规则 - 联系我们

    本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

    工信部备案号:黑ICP备15003705号 © 2020-2023 www.taowenge.com 淘文阁 

    收起
    展开