create a function that is the derivate of a f=@(t) function
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
DDD
le 14 Mar 2015
Réponse apportée : Giorgos Papakonstantinou
le 14 Mar 2015
having a function
fa=@(x) x^5-0.4475*x.^4-3.1*x.^3 + 3.085*x.^2-0:962*x+ 0:0943
how to calculate
dfa=@(x) diff(fa)
so that it is still a function and i can calculate,for example:
dfa(5)
0 commentaires
Réponse acceptée
Giorgos Papakonstantinou
le 14 Mar 2015
Maybe this:
fa = @(x)x^5-0.4475*x.^4-3.1*x.^3+3.085*x.^2-0.962*x+0.0943
g = sym(fa);
dg = diff(g);
df = matlabFunction(dg)
df =
@(x)x.*6.17-x.^2.*9.3-x.^3.*1.79+x.^4.*5.0-9.62e-1
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!