MATLAB习题
合集下载
相关主题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
Matlab
楼宇091 黄娟 20090271
1.将图形窗口分成两个窗格,分别绘制出函数:
在[0,3]区间上的曲线,并利用axis 调整轴刻
度纵坐标刻度,使y1在[0,12]区间上,y2在
[-2,1.5]区间上。
>> x=0:0.1:3;
>> subplot(2,1,1)
>> y1=2*x+5;
>> plot(x,y1)
>> subplot(2,1,2)
>> y2=x.^2-3*x+1;
>> plot(x,y2)
>> axis([0,3,-2,1.5])
>>
00.51 1.52 2.5346
8
10
12
00.51 1.52 2.53
-2-1
1
135
2221+-=+=x x y x y
>> performance=input('请输入百分制成绩: '); >> if (performance>100) | (performance<0) error
end
>> switch floor(performance/10)
case{0,1,2,3,4,5}
disp('E');
case{6}
disp('D');
case{7}
disp('C');
case{8}
disp('B');
case{9}
disp('A');
case{10}
disp('A+');
otherwise
disp('成绩不合理');
‘请输入百分数制成绩:80’
end
B