how can i find the stationary points of this equation and find its nature in the region x>0.

10 visualizaciones (últimos 30 días)
x = -10 : 0.01 : 10;
y = (exp(x)./ sin(x)) + 0.3;
  3 comentarios

Iniciar sesión para comentar.

Respuestas (1)

Matt J
Matt J el 8 de Nov. de 2019
Editada: Matt J el 8 de Nov. de 2019
You can use diff to get numerical approximations of the derivatives and apply stationary point criteria based on those.
If needed, you could then use fzero to find roots of the derivatives using what you got from diff as initial guesses. This would refine the estimates of the stationary point locations to better than your 0.01 sampling interval.

Categorías

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

Etiquetas

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by