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)
end
end
end
end
end
end
用法举例:命令行输入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你要是不给分就太对不起我了。
1、使用matlab输入所售商品的价格。2、在matlab内编写程序悄漏f(n)=f(n-1)+f(n-2)(f(1)=1和f(2)=2)铅悄函数。
3、绘制matlab函数带入数字即可求出槐运渣实际销售额。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)