Error using inline. Input must be a string.

6 次查看(过去 30 天)
Hi Everyone. I'm studying the steepest descend method and I have tried to compile this method for a function. The problem is that when I compile, the command window shows "Error using inline (line 51)Input must be a string." and I don't know what to do.

采纳的回答

Walter Roberson
Walter Roberson 2016-2-11
syms X
fprime = matlabFunction( diff(exp(-X)+X.^4', X) );
If you do not have the symbolic toolbox then diff() is entirely the wrong function to use, as diff() on a non-symbolic object X is X(2:end,:) - X(1:end-1,:) -- that is, numeric difference between adjacent elements.
If you do not have the symbolic toolbox then
fprime = @(X) -exp(-X) + 4.*X.^3;
would be the formula.

更多回答(0 个)

标签

尚未输入任何标签。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by