Derivative of symbolic funtion at a specific value
1 回表示 (過去 30 日間)
古いコメントを表示
Ahmed Elkady
2012 年 9 月 22 日
コメント済み: Mohammad Tauquir Iqbal
2018 年 7 月 10 日
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?
0 件のコメント
採用された回答
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 件のコメント
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 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!