derivative in Matlab-Symbolic Toolbox
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hello,
How can I get such a derivative in Matlab-Symbolic Toolbox ?
Well as the derived member x '.
y = sin(x)
y´=x´*cos(x)
Thank you for any help.
0 comentarios
Respuestas (2)
Wayne King
el 18 de Feb. de 2013
Editada: Wayne King
el 18 de Feb. de 2013
syms x
y = sin(2*pi*x);
diff(y)
% returns
% 2*pi*cos(2*pi*x)
In your example, the derivative of sin(x) with respect to x is not
x*cos(x), it's just cos(x)
0 comentarios
Ver también
Categorías
Más información sobre Number Theory en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!