Derivative of symbolic funtion at a specific value

1 回表示 (過去 30 日間)
Ahmed Elkady
Ahmed Elkady 2012 年 9 月 22 日
I have a symbolic function of variable "x"
Function = @(x) 8-4.5*(x-sin (x));
say I need to get the derivative at x=5
what should i do?

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2012 年 9 月 22 日
編集済み: Azzi Abdelmalek 2012 年 9 月 22 日
Function = @(x) 8-4.5*(x-sin (x));
Function(5)
%derivative
Function_d = @(x) diff('8-4.5*(x-sin (x))');
x=5; eval(Function_d(1))
  4 件のコメント
Ahmed Elkady
Ahmed Elkady 2012 年 9 月 22 日
Still not working, it gives the derivative as function of "x" but it doesn't evaluate at x=5
>> Function_d = @(x) diff('8-4.5*(x-sin (x))'); >> Function_d(5)
4.5*cos(x) - 4.5
Azzi Abdelmalek
Azzi Abdelmalek 2012 年 9 月 22 日
編集済み: Azzi Abdelmalek 2012 年 9 月 22 日
try this
Function_d = @(x) diff('8-4.5*(x-sin (x))');
x=5; eval(Function_d(1))

サインインしてコメントする。

その他の回答 (1 件)

Ahmed Sheta
Ahmed Sheta 2017 年 4 月 25 日
syms x y=sin(x) a=diff(y,2,x) subs(a,x,pi/2)

カテゴリ

Help Center および File ExchangeOrdinary Differential Equations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by