matlab讲义6.ppt_第1页
matlab讲义6.ppt_第2页
matlab讲义6.ppt_第3页
matlab讲义6.ppt_第4页
matlab讲义6.ppt_第5页
已阅读5页,还剩11页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

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. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

最新文档

评论

0/150

提交评论