多个匿名函数MATLAB

时间:2018-03-10 15:14:59

标签: matlab anonymous-function derivative

我的目标是计算函数的衍生使用此结果作为另一个函数。显然,这意味着:

f = @(x) (x-1)*(x-2);      %A simple function
derivative = jacobian(f,x) %MATLAB output : "2*x - 3"
df = @(x) derivative       %= @(x) 2*x - 3
df(2)                      %= "2*x -3" instead of 2*2 - 3

我怎么能做这样的事情?我尝试了 syms x ,但没有帮助。

1 个答案:

答案 0 :(得分:3)

您想要matlabFunction

  

g = matlabFunction(f)将符号表达式或函数f转换为具有句柄g的MATLAB函数。

在你的例子中:

>> syms x
>> f = @(x) (x-1)*(x-2);
>> derivative = jacobian(f,x);
>> df = matlabFunction(derivative)
df =
  function_handle with value:
    @(x)x.*2.0-3.0
>> df(2)
ans =
     1