I have a symbolic function, I want to know the points of discontinuity.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Rusty
el 2 de Sept. de 2015
Comentada: Kanav
el 26 de Sept. de 2022
For example the function is :
syms t
k=t*heaviside(5-t)+5*heaviside(t-5) ;
0 comentarios
Respuesta aceptada
Walter Roberson
el 2 de Sept. de 2015
so,
syms t
k = t*heaviside(5-t)+5*heaviside(t-5);
disc = feval(symengine, 'discont', k, t);
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Symbolic Math Toolbox 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!