funplot.m
来自「hi i have a huge collection are you int」· M 代码 · 共 15 行
M
15 行
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 + =
减小字号Ctrl + -
显示快捷键?