matlab经典小程序.docVIP

  1. 1、本文档共5页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
  5. 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
  6. 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们
  7. 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
  8. 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
Num2str变数值为字符串Int2str变整数为字符串Str2num变字符串为数值Sprintf变数值为格式控制下的字符串Sscanf变字符串为格式控制下的数值1.分段函数for x=-pi*6:pi/10:6*pi y=sin(x);if y0 y=0;endfprintf(x=%f,y=%f\n,x,y);end2.计算距离x1=input(enter the x1: );y1=input(enter the y1: );x2=input(enter the x2: );y2=input(enter the y2: );d=sqrt((x1-x2).^2+(y1-y2).^2);fprintf(the distance of the two points is :%f,d);v0=input(Enter the 初速度v0:);h0=input(Enter the 离地高度h0:);t=0:0.01:53.重力加速度h=-0.5*9.81*t.^2+v0*t+h0;v=-9.81*t+v0;plot(t,h,k-,t,v,b--);title( Plot of h(t) and v(t)); xlabel(t); ylabel(h(t)andv(t));legend(h(t),v(t));4.坐标转换function [x, y] = polar2rect(r, theta)x = r * cos(theta * pi/180);y = r * sin(theta * pi/180);5.坐标转换,带参数检验function [mag, angle] = polar_value(x, y)msg = nargchk(1,2,nargin);error(msg);% If the y argument is missing, set it to 0.if nargin 2 y = 0;end% Check for (0,0) input argument, and print out% a warning message.if x == 0 y == 0 msg = Both x and y are zero: angle is meaningless!; warning(msg);end% Now calculate the magnitudemag = sqrt(x .^2 + y .^2);% If the second output argument is present,calculate% angle in degreesif nargout == 2 angle = atan2(y,x) * 180/pi;end6.三维螺旋线t = 0:pi/50:10*pi;plot3(sin(t),cos(t),t)grid onaxis square7.subplotfigure(1);subplot(2,1,1);x=-pi:pi/20:pi;y=sin(x);plot(x,y);title(Subplot 1 title);subplot(2,1,2);x=-pi:pi/20:pi;y=cos(x);plot(x,y);title(Subplot 2 title);8.Figurefigure(1);x=x:0.05:2;y1=exp(x);plot(x,y1);figure(2);y2=exp(-x);plot(x,y2);9.保持x=-pi:pi/20:pi;y1=sin(x);y2=cos(x);plot(x,y1,b-);hold on;plot(x,y2,k--);hold off;legend (sin x,cos x);10.极坐标绘图g = 0.5;theta = 0:pi/20:2*pi;gain = 2*g*(1+cos(theta));% Plot gainpolar (theta,gain,r-);title (Gain versus angle \it\theta);11.色彩控制x=0:pi/15:4*pi;y=exp(2*sin(x));plot(x,y,-ko,LineWidth,3.0,Markersize,6 ,...MarkerEdgeColor,r,MarkerFaceColor,g);

文档评论(0)

xcs88858 + 关注
实名认证
文档贡献者

该用户很懒,什么也没介绍

版权声明书
用户编号:8130065136000003

1亿VIP精品文档

相关文档