Logic Design and button control

I have to do a on of button control with producing 0 1 signal but i have to use functioncall parameter and logic
there is no examples in mathworks simulink could you help me

Answers (1)

Atharva
Atharva on 13 Sep 2023
Hey Dilara,
I understand that you have to produce 0 1 signal controlled by button and use functional parameter and logic.
  1. Add an Inport Block: Drag and drop an "Inport" block from the Simulink Library Browser into your model. This Inport block will represent the input signal, which will act as a control button (0 for off, 1 for on).
  2. Add a Function-Call Subsystem:
  • Drag and drop a "Subsystems" block from the Simulink Library Browser into your model.
  • Double-click on the subsystem block to open it.
3.Inside the Function-Call Subsystem:
  • Add a "Function-Call Split" block inside the subsystem. This block will split the function call parameter into two cases: 0 and 1.
  • Connect the output of the Inport block to the input of the Function-Call Split block.
  • Add a "Function-Call Generator" block for each case (0 and 1) inside the subsystem. Connect the outputs of the Function-Call Split block to the corresponding generator blocks.
  • Configure each Function-Call Generator block as follows:
  • For the case 0, set the logic to output 0 when called.
  • For the case 1, set the logic to output 1 when called.
4. Outside the Function-Call Subsystem:
  • Connect the outputs of the Function-Call Generator blocks to an "Outport" block each. These Outport blocks represent the final output signals (0 or 1).
I hope this helps!

Communities

More Answers in the  Power Electronics Control

Categories

Products

Release

R2022a

Asked:

on 17 Aug 2023

Answered:

on 13 Sep 2023

Community Treasure Hunt

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

Start Hunting!