how can i find the value of differentiation? that is f'(2)?
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
f=@(x) x^2- 4
a=diff(f,x)
a(2)? .... (i am getting error here)
0 Commenti
Risposte (1)
Alex Mcaulley
il 12 Mar 2019
Modificato: VBBV
il 2 Feb 2024
syms x
f=x^2- 4
a(x)=diff(f,x)
a(2)
0 Commenti
Vedere anche
Categorie
Scopri di più su Symbolic Math Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!