What is the problem with the heaviside function?
20 views (last 30 days)
Show older comments
fun =
@(p,x)p(1)*heaviside(x-p(2))
Undefined function 'heaviside' for input arguments of type 'double'.
0 Comments
Accepted Answer
Star Strider
on 10 Sep 2015
Your function works for me. Do you have the Symbolic Math Toolbox?
If you don’t substitute a call to this one for the heaviside call:
hvsd = @(x) [0.5*(x == 0) + (x > 0)];
I tested both, they give equivalent results.
2 Comments
Star Strider
on 10 Sep 2015
Edited: Star Strider
on 10 Sep 2015
Yes. The heaviside function is only in the Symbolic Math Toolbox. My function provides the same results, so you can use it instead. I abbreviated its name to ‘hvsd’ be sure it didn’t overshadow heaviside on my computer so I could test both of them. You can obviously name it whatever you want.
More Answers (1)
Thorsten
on 10 Sep 2015
Edited: Thorsten
on 10 Sep 2015
The error means that Matlab cannot find the heaviside function. Try
which heaviside
to locate the function. The heaviside function is part of the Symbolic Math Toolbox. If you do not have this TB, you can write your own heaviside function
function y = heaviside(x)
y = (x > 0) + 0.5*(x == 0);
1 Comment
See Also
Categories
Find more on Startup and Shutdown 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!