Differentiating a symbolic function

i want to differentiate f=@(x)x^3-4*x^2+x+6; how can i do this? how i can find f'(x)?

回答 (2 件)

KSSV
KSSV 2017 年 3 月 24 日

0 投票

syms x
f=x^3-4*x^2+x+6;
df = diff(f)
Roger Stafford
Roger Stafford 2017 年 3 月 24 日

0 投票

Express your function in symbolic form and use ‘diff’.

カテゴリ

質問済み:

2017 年 3 月 24 日

回答済み:

2017 年 3 月 24 日

Community Treasure Hunt

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

Start Hunting!

Translated by