I have a symbolic function, I want to know the points of discontinuity.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
For example the function is :
syms t
k=t*heaviside(5-t)+5*heaviside(t-5) ;
0 Commenti
Risposta accettata
Walter Roberson
il 2 Set 2015
so,
syms t
k = t*heaviside(5-t)+5*heaviside(t-5);
disc = feval(symengine, 'discont', k, t);
1 Commento
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Symbolic Math Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!