huituzb1.asv
来自「包括MATLAB7.0实用指南(1)书中所有的例子的源代码。」· ASV 代码 · 共 12 行
ASV
12 行
h=axes('Position',[0 0 1 1],'Visible','off');
axes('Position',[.25 .1 .7 .8]);
t=0:900;
plot(t,0.25*exp(-0.005*t));
str(1)={'Plot of the function:'};
str(2)={'y=Ae{-\alpha}{\itt}'};
str(3)={'With the value:'}
str(4)={'A=0.25'};
str(5)={'\alpha=.005'};
str(6)={'t=0:900'};
set(gcf,'CurrentAxes',h);
text(.01,.6,str,'FontSize',12)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?