how can i find the value of differentiation? that is f'(2)?

3 views (last 30 days)
f=@(x) x^2- 4
a=diff(f,x)
a(2)? .... (i am getting error here)

Answers (1)

Alex Mcaulley
Alex Mcaulley on 12 Mar 2019
Edited: VBBV on 2 Feb 2024
syms x
f=x^2- 4
f = 
a(x)=diff(f,x)
a(x) = 
a(2)
ans = 
4

Categories

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!