How to use input signals as variables in Simulink blocks?
110 views (last 30 days)
Show older comments
How can I use an input signal as a variable for one of the block parameters of a block, such as the Slope or Initial Value for a Ramp block? The ramp is just an example, as I would like to apply this to other blocks as well. Thanks!
0 Comments
Answers (2)
Rishabh Rathore
on 24 May 2018
oh, you want use input signals as values for parameter? I'm afraid that's not possible. Signals and parameters are two different things altogether. It is possible to use signal to specify number of input ports for blocks like multiport switch, but in general you cannot use signals as values for parameters.
0 Comments
Rishabh Rathore
on 23 May 2018
Here's what I understand from you question, you want to use variables as input/parameters not constants.
So the way you can do this is define the parameter in workspace of matlab and use that variable instead of the constant values as parameter.
Steps required:-
- Define the variable for parameter in workspace
- double click the block to open parameter dialogue box
- use the variable name defined in the workspace for the relevant parameter.
Note:- Make sure that the variable get initialized/assigned before it's been used.
See Also
Categories
Find more on Sources 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!