freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內容

matlab編程與工程應用(第二版)習題解答(全)-資料下載頁

2025-05-30 18:15本頁面
  

【正文】 for j = 1 : b Count = Count + 1。 output = output + x(i,j)。 endendoutput = output / Count。15. x = randint(2,2,[10,10])。x1 = sum(x,1)。x2 = sum(x,2)。 y1 = prod(x,1)。y2 = prod(x,2)。16.clear。x = randint(3,5,[10,10])。[a b] = size(x)。maxc = max(x)。maxr = max(x39。)。maxlist = [maxc maxr]。maxall = max(maxlist39。)。17. 略18. clear。x = randint(3,5,[10,10])。[row col] = size (x)。Count = 0。for i = 1 : row Count = Count + 1。 fprintf(39。The product of row %d is %d\n39。,Count,sum((x(i,:))39。))。end19. clear。for i = 1 : 9 x1 = 0。 for j = 1 : i x1 = x1 + (ij) * power(10,j) 。 end。 x2 = (x1+i) * 8 + i。 fprintf(39。%d * 8 + %d = %d\n39。,x1+i,i,x2)。end20.clear。for i = 1 : 5 for j = 1 : i fprintf(39。%d 39。,i*j)。 end disp(39。 39。)。end21. 略22. 略23. 略24. 1025. clear。r = input(39。Enter the radio of the box :39。)。while(r 0) r = input(39。Enter the radio of the box:39。)。end。 h = input(39。Enter the Height of the box:39。)。while(h 0) h = input(39。Enter the Height of the box:39。)。end。 fprintf(39。The V of the box is :%.2f39。,pi/3*(r.^2)*h)。26. clear。x1 = input(39。Enter your minimum value :39。)。while (x1 ~= int32(x1)) x1 = input(39。Enter your minimun value :39。)。end。 x2 = input(39。Enter your maxmum value :39。)。while (x2 ~= int32(x2) || x2 x1) x2 = input (39。Enter your maxmum value :39。)。end。 x3 = input (39。Now Enter your choice in this range :39。)。while (x3 ~= int32(x3)|| x3 x2 || x3 x1) x3 = input(39。Now Enter your choice in this range:39。)。end。 Count = 1。while(randi([x1 x2]) ~= x3) Count = Count + 1。end。 fprintf(39。It took %d tries to generate your number \n39。,Count)。 27. 略28. clear。Tc = input(39。Enter the Temp Tc:39。)。Th = input(39。Enter the temp Th:39。)。if Tc Th Tl = Tc。 Tc = Th。 Th = Tl。end。disp(1Tc/Th)。 29. clear。x = input(39。Enter the number :39。)。vec = []。while( x 0) vec = [vec x]。 x = input(39。Enter the number :39。)。end。30. 略32. clear。x = input(39。Enter a maximum temp :39。)。while(x 16 || x 20) x = input(39。Error! Enter a maximum temp :39。)。end。i = 0。fprintf(39。%6s%6s\n39。,39。F39。,39。C39。)。while(5/9*(i32) x) fprintf(39。%%\n39。,i,5/9*(i32))。 i = i + 5。end。33. clear。clf。x = 1 : 1 : 10。y = x。yy = y。for i = 1 : 10 yy(i) = y(i) + rand()*。end。plot(x,y)。hold on。plot(x,yy,39。r*39。)。 第五章 向量化代碼1. Mat.*2。2. Result = vec。3. cumprod(vec)。4. vec = randint(1,6,[0 20])。 maxvec = max(vec)。 minvec = min(vec)。 cumsumvec = cumsum(vec)5. Sum(vec)6. clear vec = randint(1,5,[10 10])。 vec_3 = vec 3。 ZhengshuNum = length(find(vec 0))。 vec_abs = abs(vec)。 vec_max = max(vec)。7. max(vec,[],1)max(vec,[],2)max(max(vec))。8.function output = Test3_Func(r,n)vec = []。for i = 0 : n vec = [vec r.^i]。end。output = sum(vec)。9. clear。clf。veum = randi(100)。vec = 1 : 1 : veum。plot(vec,vec.^2,39。r39。)。10. vec1 = Vec([1 3 5])。 vec2 = Vec([2 4 6])。 CheckSum = vec1.*vec2。11. function output = Test3_Func(vec,n)vec2 = []。for i = 1 : n vec2 = [vec2。vec]。end。 output = reshape(vec2,1,numel(vec2))。12. vec = 1 : 1 : 1000。 Result = sum(1./(vec.^2))。 Check = pi.^2/6。 diff = check – result13. 略14. 略15. clear。clf。vec_temp = 0 : : 10。x1 = input(39。Enter the number of level :39。)。while(all(vec_temp x1)) x1 = input(39。Enter the number of level :39。)。end。disp(x1)16. 略17. ticif x==21 disp(x)end。toc ticswitch x case 21 disp (x)。end。toc18. Ones(3)19. If find(r 0) == [] amp。amp。 fin(h 0) == 0 V = pi .*(r.^2)*hEnd。 第六章 MATLAB 程序1~20 略21. function S = Test3_Func(n) P = 10000。 i = 。 vec = 1 : 1 : n。 S = P * ((1 + i).^vec)。 plot(vec,S)。n = input(39。Enter the Year:39。)。while ~(n 0 amp。amp。 int32(n) == n) n = input(39。Enter the Year:39。)。 end。Test3_Func(n)。22. Function lenf = lenprompt()。 Lenf = input(‘Enter the length By inches: ’)。 Function Leni = covert_f_to_i(lenf) Leni = …(英尺轉英寸) Function printlens(lenf,leni) Disp(lenf)。 Disp(leni)。23. 略24.
點擊復制文檔內容
公司管理相關推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1