📄 funplot.m
字号:
function funplot(f,lims)% Simple function plotter.% Test for characters that f is a function rather than a function name:if any(f<48) f = inline(f);endx = linspace(lims(1),lims(2));y = feval(f,x);clfplot(x,y)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -