Symbolic function- differential equation sloving
Mostrar comentarios más antiguos
How can I find the maximum or minimum values of the answer of a differential equation after solving it? It returns Symbolic Function as the solution of the equation.
1 comentario
Soheil Habibian
el 27 de Oct. de 2017
Respuestas (2)
KSSV
el 27 de Oct. de 2017
0 votos
You substitute the required values in the solution using subs and then call max / min.
4 comentarios
Soheil Habibian
el 27 de Oct. de 2017
Editada: Soheil Habibian
el 27 de Oct. de 2017
Walter Roberson
el 27 de Oct. de 2017
symfun and regular sym are the same except for the indexing operation name(value).
Soheil Habibian
el 27 de Oct. de 2017
Walter Roberson
el 27 de Oct. de 2017
points_of_interest = solve( diff(g, x), x );
which_sign = sign( subs( diff(g, x, x), points_of_interest ) );
After that you need to know how to determine from the sign whether you are dealing with a min or a max or an inflection point.
Walter Roberson
el 27 de Oct. de 2017
0 votos
You take the derivative of the equation and you solve for zeros. Then you take the second derivative and check the sign at each of the zeros in order to determine whether you have a min, max, or saddle.
Categorías
Más información sobre Calculus en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!