Matlab程序設(shè)計(jì)實(shí)驗(yàn)報(bào)告材料_第1頁
Matlab程序設(shè)計(jì)實(shí)驗(yàn)報(bào)告材料_第2頁
Matlab程序設(shè)計(jì)實(shí)驗(yàn)報(bào)告材料_第3頁
已閱讀5頁,還剩14頁未讀 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡介

1、實(shí)驗(yàn)七 Matlab 程序設(shè)計(jì)實(shí)驗(yàn)?zāi)康模?、掌握建立和執(zhí)行 M 文件的方法;2、掌握實(shí)現(xiàn)選擇結(jié)構(gòu)的方法;3、掌握實(shí)現(xiàn)循環(huán)結(jié)構(gòu)的方法。實(shí)驗(yàn)內(nèi)容:1. 編寫用 5 次多項(xiàng)式擬合函數(shù) y=sin(x), x 0, 2 的腳本 M 文件,要求繪圖觀察擬合的效果。function shiyan1x=0:0.5:2*piy=sin(x)p=polyfit(x,y,5)x1=0:0.2:2*piy1=polyval(p,x1)plot(x,y, 'b' ,x1,y1, '*r'Columns 1 through 900.50001.00001.50002.00002.5000

2、3.00003.50004.0000Columns 10 through 134.50005.00005.50006.0000Columns 1 through 900.47940.84150.99750.90930.59850.1411-0.3508-0.7568Columns 10 through 13-0.9775-0.9589-0.7055-0.2794p =-0.00560.0881-0.39670.26710.89020.0029x1 =Columns 1 through 100 0.20000.40000.60000.80001.00001.20001.40001.6000 1.

3、8000Columns 11 through 202.0000 2.20002.40002.60002.80003.00003.20003.40003.6000 3.8000Columns 21 through 304.0000 4.20004.40004.60004.80005.00005.20005.40005.6000 5.8000Columns 31 through 326.0000 6.2000y1 =Columns 1 through 100.0029 0.18861.0048 0.9761Columns 11 through 200.37860.55850.71720.84610

4、.93910.99260.9083 0.80480.67010.50980.33010.1381-0.0590-0.2538-0.4389 -0.6073Columns 21 through 30-0.7524 -0.8685-0.9505-0.9949-0.9991-0.9626-0.8863-0.7732-0.6288 -0.4606-0.2792 -0.09782.Columns 31 through 32從鍵盤輸入一個(gè) 4 位整數(shù),按如下規(guī)則加密后輸出。加密規(guī)則:每位數(shù)字都加上7,然后用和除以10 的余數(shù)取代該數(shù)字;再把第一位與第三位交換,第二位與第四位交換。functionshiya

5、n2n=input('please input four integers:'n=n+7n=n %10a=n(1,1)n(1,1)=n(1,3)n(1,3)=ab=n(1,2)n(1,2)=n(1,4)n(1,4)=bplease input four integers:1n =123n =8910n =89102 3 4111110 9 101110 9 81110 11 81110 11 8 93.輸入一個(gè)百分制成績,要求輸出成績等級A、B、C、D、E,其中90100分為A , 8089分為B,7079 分為 C, 6069 分為 D, 60 分以下為 E。function

6、 shiyan3clear;clc;n=input( 'please input a number:' )n=ceil(n/10)switch ncase 10,9disp( 'A' )case 8disp( 'B')case 7disp( 'C')case 6disp( 'D' )case 5,4,3,2,1disp( 'E')otherwisedisp( 'default' )endplease input a number:89899A1)工作時(shí)數(shù)超過120 小時(shí)者,超過部分加

7、發(fā)2)工作時(shí)數(shù)低于60 小時(shí)者,扣發(fā) 700 元;3)其余按每小時(shí)84 元計(jì)發(fā)。4. 硅谷公司員工的工資計(jì)算方法如下:試編程按輸入的工號和該號員工的工時(shí)數(shù),計(jì)算應(yīng)發(fā)工資。15% ;function shiyan4clear;clc;x=0;m=input( 'please input your number:')n=input( 'please input your working hours:')if n<60x=n*84-700;elseif n>120x=n*84+(n-120)*84*1.15;elsex=n*84;endxplease in

8、put your number:38m =38please input your working hours:8080x =67205. 設(shè)計(jì)程序,完成兩位數(shù)的加、減、乘、除四則運(yùn)算。即:輸入兩個(gè)兩位隨機(jī)整數(shù),再輸入一個(gè)運(yùn)算 符號,做相應(yīng)的運(yùn)算,并顯示相應(yīng)的結(jié)果。function shiyan5clear;clc;m=input( 'please input a number:' )n=input( 'please input another number:' )x=input( 'please input a symbol:','s&#

9、39;)switch xcase '+'q=m+n;case '-'q=m_n;q=m*n;case '/'q=m/n;endqplease input a number:12m =12please input another number:1 n =1please input a symbol:+x =+136. 建立5 X6矩陣,要求輸出矩陣的第n行元素。當(dāng)n值超過矩陣的行數(shù)時(shí),自動(dòng)轉(zhuǎn)為輸出矩陣的最后一行元素,并給出出錯(cuò)信息。function shiyan6clear;clc;a=1 2 3 4 5 6;2 3 4 5 6 7;3 4 5 6

10、 7 8;4 5 6 7 8 9;24 45 34 76 23 67;n=input( 'please input a number:' )if n<=5b=a(n,:);elseif n>5b=a(5,:);disp( 'error' );endbplease input a number:4n =4b =4 5 6 7 8 9please input a number:82n =82errorb =24 45 34 76 23 677. 產(chǎn)生 20 個(gè)兩位隨機(jī)整數(shù),輸出其中小于平均數(shù)的偶數(shù)。function shiyan7clear;clc;i=1;c=;i0=1;a=fix(rand(1,20)*100)b=mean(a)for i=1:20if(a(i)<b)&&(rem(a(i),

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

最新文檔

評論

0/150

提交評論