Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

What is this block?

2 views (last 30 days)
Jfp45
Jfp45 on 8 Dec 2016
Closed: MATLAB Answer Bot on 20 Aug 2021
  2 Comments
Walter Roberson
Walter Roberson on 8 Dec 2016
That appears to be a Heaviside function. Are you asking whether there is a built-in Simulink block to implement it? I do not find it as a single block in Simulink
Jfp45
Jfp45 on 9 Dec 2016
This block is from an old simulink diagram, and is acting as a heaviside, but i cannot find this block, an any built-in block in the library.

Answers (1)

Prashanth Krishnan
Prashanth Krishnan on 14 Dec 2016
As Walter mentioned, the block in the image represents a heaviside function. Unfortunately, there is currently no block for the 'heaviside' function in Simulink. However, there is a function in MATLAB that implements this, and is called "heaviside". Please refer to the following link for documentation on this function:
  1 Comment
Walter Roberson
Walter Roberson on 14 Dec 2016
Correct URL should be https://www.mathworks.com/help/symbolic/heaviside.html as the one you gave was for use inside the MuPAD engine.
Either version uses the symbolic engine, which is a problem for Acceleration as nothing in symbolic toolbox can be compiled.
I would therefore suggest using a MATLAB Function Block with
result = double(u >= 0)
or
result = double(u > 0);
or
result = double(u > 0) + double(u == 0) * 1/2;
depending on the behavior that was wanted for 0 exactly.

This question is closed.

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!