how to use derivation to a function from the user

I have been suggested to use anonymous function for functions from the user and it works, but now I need to do derivation of the entered function I try diff and it's not working
str = input('Please enter the function: ', 's');
f = str2func(['@(x) ',str]);
dydx=diff(f);
r1=dydx(2);
disp(r1);

2 件のコメント

Stephen23
Stephen23 2017 年 11 月 28 日
"I need to do derivation of the entered function"
Do you need a symbolic result or a numeric result?
Manal
Manal 2017 年 11 月 28 日
both I need to display the derivative then the result of x that inputted by the user

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

回答 (2 件)

KSSV
KSSV 2017 年 11 月 28 日

0 投票

syms x
f = sin(x) ;
df=diff(f)

3 件のコメント

Manal
Manal 2017 年 11 月 28 日
if I try this it will give me this error
Undefined function 'diff' for input arguments of type 'function_handle'
KSSV
KSSV 2017 年 11 月 28 日
Did you use syms x ?
Manal
Manal 2017 年 11 月 28 日
yes

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

カテゴリ

質問済み:

2017 年 11 月 28 日

コメント済み:

2017 年 11 月 28 日

Community Treasure Hunt

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

Start Hunting!

Translated by