版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、Week 6,Programs Scripts,Why programs,a = rand(1000); s = 0; for i = 1:1000 s = s+a(i); end s/1000,When we want to do something repeatedly. Suppose we want to see if the average of 1,000 uniformly-distributed random numbers is close to 0.5.,Suppose we want to run this several times.,In the “Command W
2、indow” Select the “File” menu command Select “New / M file” This should start the m-script Editor Window. Type your program into the window.,To create a Matlab program (.m file),Enter your program here,To save:,Select the menu command File/Save and give the program an appropriate name, e.g. testavg.
3、 The .m should automatically be added to the program name. The file will be saved into your work space. (See the Current Directory Window.) Click back to the Command Window. You can check your program by the Matlab command dir *.m.,Type the name of the program without the .m and hit “Enter”. E.g. te
4、stavg ans= 0.4917 The program runs and gives you the result. To run it again, just do the same: testavg It will give you another average.,To Run:,Have a Head:,Give some explanations and details of the programs operation Comment them by using % at the beginning of each comments.,Typing help testavg w
5、ill display this header.,% simple program called multiply.m % take two variables and multiply them a = 5 ; b = 3 ; product = a * b,Some Examples of M Scripts,Type this into your editor, save it with the name “multiply.m” and run it with the command multiply,The following program graph the function z
6、=xp+yp. Enter the program and save as sketch.m x, y = meshgrid(-3:0.1:3, -3:0.1:3); z = x .p + y .p; mesh(x,y,z); Type p=2; sketch and p=4; sketch What will the shape be for p odd, and for p large?,To sketch a surface :,Sometimes we want to change the results of the program by changing some of the v
7、ariables. For example, we may want to compute the average of n numbers instead of 1,000 numbers where n is given by the users of the program.,Input the Arguments,First is to print them without the “;” % a simple program a=7; b=3; c=a+b; c the result of c is presented.,Output the Results,disp is anot
8、her simple command for displaying numbers or text on the screen. c=10; disp(c) A=1 2; 3 4; disp(A) c=10, d=20; disp(c, d) t=Raymond; disp(t) s=Hello, t=Raymond; disp(s, t) c=10; disp( c = , num2str(c) For more sophisticated output formats, look up fprintf and sprintf,% hello.m greets you and asks fo
9、r your name. % It then tells you the date. disp(Hello! Who are you? ) name= input (Enter your name inside quotes); d = date; greeting= Hello , name, . Today is , d, .; disp(greeting),Example of Input and Output,%simple computes product and sum val1=input(enter first value:); val2=input(enter second value:); prod=val1*val2; sum=val1+val2; disp(product is , num2str(prod) disp(sum is , num2str(sum),Another example,Debugging,If you program has errors (bugs), Matlab will tell you the number of the line where the errors are located Any errors or spelling mistakes, changes you want to make to
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- Q-HHFM002-2018 水系统控制阀门动态性能检测设备
- 聊城大学《儿童文学》练习题及参考答案
- 2026年春节期间活动安排方案设计
- 2026年缺铁性贫血健康指导
- 2026年新高考语文教学困惑问题分析
- 2026年劳动主题教育主题班会
- 2026年化学检验工职业技能大赛方案
- 2026年寝室消防安全检查标准
- 2026年选修课食品营养与食品安全
- 2026年生物安全防控能力提升培训
- NCIC临床实践指南:免疫检查点抑制剂毒性管理指南(2026版)课件
- 2025年福建省综合评标专家库考试题库(附答案)
- 残疾人上岗培训制度
- 泥水平衡盾构掘进施工工艺
- 拇外翻介绍教学课件
- 互联网数据中心行业相关投资计划提议
- 广西主要树种地径测算蓄积量工作手册(2025 正式版)
- 生产质量事故处理报告
- 电缆沟开挖及电缆敷设施工方案
- 人教版数学二年级上册全册教案(2022年11月修订)
- 2025年国家开放大学《经济学》期末考试备考试题及答案解析
评论
0/150
提交评论