Differentiation

8 visualizaciones (últimos 30 días)
Richard
Richard el 17 de En. de 2012
Comentada: Walter Roberson el 16 de Feb. de 2019
Is it possible to construct a code that for example we type in x^2 and then the program finds (d/dx)x^2=0 and gives x=0?
I have tried using syms x; diff(x^2) which gives 2*x but I don't know how to make it solve the equation. Perhaps I have to define a function handle? But f=@(x) diff(x^2) doesn't work.
Please help.

Respuesta aceptada

Walter Roberson
Walter Roberson el 17 de En. de 2012
solve(diff(x^2))
  1 comentario
Richard
Richard el 17 de En. de 2012
Thanks, Walter! :-)

Iniciar sesión para comentar.

Más respuestas (2)

Wayne King
Wayne King el 17 de En. de 2012
syms x
solve(diff(x^2)==0)
  1 comentario
Richard
Richard el 17 de En. de 2012
Thanks, Wayne! :-)

Iniciar sesión para comentar.


jeevitha kandasamy
jeevitha kandasamy el 14 de Feb. de 2019
i need matlab c code for integrator ?
  1 comentario
Walter Roberson
Walter Roberson el 16 de Feb. de 2019
Unfortunately, code generation is not supported for integral(). However, code generation is supported for the older quadgk(), so you can use MATLAB Coder with that.

Iniciar sesión para comentar.

Categorías

Más información sobre Programming en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by