I have a symbolic function, I want to know the points of discontinuity.
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Rusty
am 2 Sep. 2015
Kommentiert: Kanav
am 26 Sep. 2022
For example the function is :
syms t
k=t*heaviside(5-t)+5*heaviside(t-5) ;
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 2 Sep. 2015
so,
syms t
k = t*heaviside(5-t)+5*heaviside(t-5);
disc = feval(symengine, 'discont', k, t);
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!