2024-09-26 01:43:17
fplot的第一个参数FUN是函数句柄,而不是符号表达式。
如下三种写法是正确的:
fplot('sin(1/x)',[0.01,0.1],2e-3);
fplot(@(x)sin(1/x),[0.01,0.1],2e-3);
fplot(matlabFunction(f),[0.01,0.1],2e-3);%matlabFunction函数用于将符号表达式转化成函数句柄
怎么知道函数参数是句柄式还是参数式,看help吗?
2024-09-26 01:36:05