How to do numerical differentiation using Matlab?
Afficher commentaires plus anciens
Can anyone help me with doing numerical differentiation using matlab for the function on this image:

Where the function F(gamma) is given by eq (11) in the following image:

I have never done something like this on Matlab, so i appreciate it if you can give me an example or try to give me the initial steps for this equation.
differential-equations
Réponses (1)
Torsten
le 6 Mar 2017
0 votes
Use symbolic differentiation:
https://de.mathworks.com/help/symbolic/diff.html
Best wishes
Torsten.
5 commentaires
Deema42
le 6 Mar 2017
Torsten
le 6 Mar 2017
Use "matlabFunction" or "subs" on the result to evaluate the derivatives numerically:
help matlabFunction
help subs
Best wishes
Torsten.
Deema42
le 6 Mar 2017
Torsten
le 7 Mar 2017
syms x
f = x^2;
df = diff(f,x);
hf = matlabFunction(df);
hf(2)
Best wishes
Torsten.
Deema42
le 7 Mar 2017
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!