matlab经典的小程序.pdf

  1. 1、本文档共6页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
精选文档 Num2str 变数值为字符串 Int2str 变整数为字符串 Str2num 变字符串为数值 Sprintf 变数值为格式控制下的字符串 Sscanf 变字符串为格式控制下的数值 1.分段函数 for x=-pi*6:pi/10:6*pi y=sin(x); if y<0 y=0; end fprintf('x=%f,y=%f\n',x,y); end 2 .计算距离 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:5 3 .重力加速度 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 magnitude mag = sqrt(x .^2 + y .^2); % If the second output argument is present,calculate % angle in degrees if nargout == 2 angle = atan2(y,x) * 180/pi; end 6. 三维螺旋线 t = 0:pi/50:10*pi; plot3(sin(t),cos(t),t) grid on axis square 7.subplot 可编辑

文档评论(0)

liuquan999 + 关注
实名认证
内容提供者

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

1亿VIP精品文档

相关文档