I have a symbolic function, I want to know the points of discontinuity.
7 views (last 30 days)
Show older comments
For example the function is :
syms t
k=t*heaviside(5-t)+5*heaviside(t-5) ;
0 Comments
Accepted Answer
Walter Roberson
on 2 Sep 2015
so,
syms t
k = t*heaviside(5-t)+5*heaviside(t-5);
disc = feval(symengine, 'discont', k, t);
1 Comment
More Answers (0)
See Also
Categories
Find more on Symbolic Math Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!