📄 plotcontroller.m
字号:
% Copyright (C) 2005 Anders Logg.% Licensed under the GNU LGPL Version 2.1.% % Simple script for evaluating the performance of% different time step controllers.clfsubplot(2,1,1)plot(t, k)subplot(2,1,2)e = k.*abs(r);semilogy(t, e);hold onplot(t, 2.0*tol*ones(size(t)))plot(t, 1.0*tol*ones(size(t)))plot(t, 0.5*tol*ones(size(t)))grid onxlabel('t')ylabel('e')
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -