我想在 Matlab 中声明一个非线性复杂函数,所以我写了这个:
>> syms x
>> f=inline((3/2)*(7.02^2))-(2*18*x*((1-(x/18))*(1-(exp(-18/x)))))
但它不起作用并返回此错误:
??? Error using ==> inline.inline at 47
Input must be a string.
如何声明它以便可以将它用作循环内的函数?
我想用数字找到这个函数的根,所以我首先需要声明它,这样我就可以在循环中使用它。