Differentiation

3 visualizzazioni (ultimi 30 giorni)
Richard
Richard il 17 Gen 2012
Commentato: Walter Roberson il 20 Dic 2024
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.

Risposta accettata

Walter Roberson
Walter Roberson il 17 Gen 2012
solve(diff(x^2))
  1 Commento
Richard
Richard il 17 Gen 2012
Thanks, Walter! :-)

Accedi per commentare.

Più risposte (2)

Wayne King
Wayne King il 17 Gen 2012
syms x
solve(diff(x^2)==0)

Salama
Salama il 18 Dic 2024
I want to learn differential and integral calculus to help me solve problems in quantum physics.
  2 Commenti
Walter Roberson
Walter Roberson il 20 Dic 2024
Integral calculus and differentiation is a large topic. Numerous textbooks have been written on the topic. It is not very related to MATLAB, so asking here is not correct.

Accedi per commentare.

Categorie

Scopri di più su Programming in Help Center e File Exchange

Tag

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by