Matlab实用程序--图形应用-填充图
Posted studyer_domi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Matlab实用程序--图形应用-填充图相关的知识,希望对你有一定的参考价值。
function shili17
h0=figure('toolbar','none',...
'position',[200 150 450 250],...
'name','实例17');
t=(1:2:15)*pi/8;
x=sin(t);
y=cos(t);
fill(x,y,'r')
axis square off
text(0,0,'STOP',...
'color',[1 1 1],...
'fontsize',50,...
'horizontalalignment','center')
以上是关于Matlab实用程序--图形应用-填充图的主要内容,如果未能解决你的问题,请参考以下文章