matlab程式設計問題,請賜教,越詳細越好,謝謝,完整的追加財富

時間 2021-05-07 19:59:40

1樓:匿名使用者

第一題:

x=0:0.01:2*pi;

y1=sin(x);

y2=cos(x);

plot(x,y1);

hold on;

plot(x,y2);

hold off

第二題:

將以下**儲存為m檔案,檔名為off.m

function outputprice = off (price)

if price<200 % 沒有折扣

outputprice=price;

else if (price<500) % 3%折扣

outputprice=price*(1-0.03);

else if (price<1000) % 5%折扣

outputprice=price*(1-0.05)

else if (price<2500) % 8%折扣

outputprice=price*(1-0.08);

else if (price<5000) % 10%折扣

outputprice=price*(1-0.10);

else if (price>=5000) % 14%折扣

outputprice=price*(1-0.14);

endend

endend

endend

用法舉例:命令列輸入off(6000),回車,即可求出6000的折扣後**。

第三題:

%定義自變數符號x

syms x

%求f(x)

fx=3*x^5-x^4+2*x^2+x+3;

%求g(x)

gx=1/3*x^3+x^2-3*x-1;

%求積和商

ji=fx*gx;

shang=fx/gx;

%用collect函式化簡,輸出結果

ji=collect(ji)

shang=collect(shang)

lz你要是不給分就太對不起我了。

2樓:

1.clear;clc;close allhold on

fplot(@sin,[0,2*pi],'color','r');

fplot(@cos,[0,2*pi]);

2.function y=myprice(x)if x<200

y=x;

elseif x<500

y=0.97*x;

elseif x<1000

y=0.95*x;

elseif x<2500

y=0.92*x;

elseif x<5000

y=0.9*x;

else

y=0.84*x;

end3.f=[3 -1 2 1 3];

g=[1/3 1 -3 -1];

fg=conv(f,g);

[q,r]=deconv(f,g);

請教火牛用法,隊伍搭配和符文搭配,越詳細越

3樓:苒苒雨落

符文 暴走體力向,三技能傷害相當可觀。

三圍 主體力爆傷,一個三技能有破甲秒一個沒問題。

應對方法 帶水隊上,風系別去惹他,不太好點殺血厚還有免疫,可以選擇光犬等消狀態點殺

matlab程式設計問題急求,matlab程式設計問題。。。。。。急求!!!!!

從資料庫中取出資料集合,將ip列從字串轉為long型,然後排序即可 從資料庫查詢就不說了吧,取出ip之後,通過以下方式可以轉化,直接比大小即可 public static long parseip string ip catch return l 程式 microsoft sql server 20...

一道Matlab程式設計題,matlab程式設計題

義敏學系歌 可是,你為什麼要到我這個mathematica專攻的團隊來提問呢 那我也給個mma的解法來消滅這個提問吧 nintegrate sqrt total d t 2 400.953 開濮耿昭 1.首先舉一個簡單的例子 求y x 2 在x為 0,2 上的曲線長度。把下面的複製貼上進matlab...

MATLAB程式設計的一點小問題

化學工程 暫時不會,可以參考一下這個 先回答第二個問題 a randn 5,6 i input 請輸入要輸出的行數i if i 1 i 5 b a i,disp b else b a 5,disp b disp error i與行數不符 end執行結果 a 0.6508 1.2205 0.5377 ...