matlab绘图
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
>> y=cos(t);
>> z=t;
>> plot3(x,y,z,'k-','linewidth',3) >> grid
>> plot(x,y,'b-.')
>> hold on
>> plot(z,x)
>> plot(z,y,'b-.')
>> hold off
>> plot(y,x)
>> hold on
>> plot(x,y)
>> plot(z,x)
>> plot(y,x)
>> plot3(x,y,z)
>> subplot(2,2,4)
>> plot3(z,y,x)
>> hold on
>> plot(z,x,y)
Error using plot
Data must be a single matrix Y or a list of pairs X,Y.
>> plot3(z,y,x)
>> plot3(x,z,y)
>> plot3(x,y,z)
>> axis(-10,10)
Error using axis>LocSetLimits (line 232)
Vector must have 4, 6, or 8 elements.
Error in axis (line 93)
LocSetLimits(ax(j),cur_arg);
>> axis(-10,10,-10,10)
Error using axis>LocSetLimits (line 232)
Vector must have 4, 6, or 8 elements.
Error in axis (line 93)
LocSetLimits(ax(j),cur_arg);
>> subplot(2,2,2)
>> plot3(x,y,z)
>> hold on
>> plot(x,z,y)
Error using plot
Data must be a single matrix Y or a list of pairs X,Y.
>> plot3(x,z,y)
>> hold off
>> plot3(y,x,z)
>> hold on
>> plot3(x,y,z)
>>