Differentiate an inline function
Mostra commenti meno recenti
Hi!
I have an assignment in Matlab and I need to find a function's 8th and 9th derivate. This function is an inline function, as it is an input from the user.
I have been trying to use the function diff, but it tells me: «Function 'diff' is not supported for class 'inline'.»
Any ideas?
6 Commenti
Azzi Abdelmalek
il 23 Nov 2012
Post your code
Jose
il 23 Nov 2012
Azzi Abdelmalek
il 23 Nov 2012
It's not clear,what do you want to do?
Walter Roberson
il 23 Nov 2012
Is it required that you use an inline function? Could you use a symbolic function instead? Considering that you are using the symbolic diff() routine?
Jose
il 23 Nov 2012
Walter Roberson
il 23 Nov 2012
syms x
f = sym(string_from_input);
diff(f,x,x,x,x,x,x,x,x)
Risposta accettata
Più risposte (1)
You cannot do symbolic differentiation on inline functions. If you don't have the Symbolic Toolbox, you will have to either consider a specific family of functions and pre-analyze their derivatives. Or, if you want to do numeric differentiation,
t=linspace(0,T,N);
f = vectorize(inline(string_from_input));
result = diff(f(t),8)./( t(2)-t(1) )^8;
Categorie
Scopri di più su Function Creation in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!