Matlab实用程序--图形应用-图形的叠加
Posted studyer_domi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Matlab实用程序--图形应用-图形的叠加相关的知识,希望对你有一定的参考价值。
function shili03
h0=figure('toolbar','none',...
'position',[200 150 450 350],...
'name','实例03');
x=-pi:0.05:pi;
y1=sin(x);
y2=cos(x);
plot(x,y1,...
'-*r',...
x,y2,...
'--og');
grid on
xlabel('自变量X');
ylabel('函数值Y');title('三角函数');
以上是关于Matlab实用程序--图形应用-图形的叠加的主要内容,如果未能解决你的问题,请参考以下文章