- In the “Mask Editor” (which opens after you select Create Mask), go to the Parameters & Dialog tab.
- Click “Add parameter” and choose the type of parameter that best fits your needs (for example, Edit).
- In the “Name” field, enter a name for your parameter (for example, “gainValue”).
- In the “Evaluate” field, ensure it's set to "on" to allow MATLAB expressions.
- Optionally, you can set the Default value to “one_over_inertia(1/inertia)” or any MATLAB workspace variable. However, this is evaluated only once when the model is loaded, or the mask parameter is refreshed.
SIMULINK mask parameter extract from MATLAB workspace
3 views (last 30 days)
Show older comments
This is my Simulink diagram. I want to take that 1/inertia gain value from MATLAB workspace and 1/inertia gain value must be identified as mask parameter. I made it mask parameter but i couldn't make to extract it from MATLAB workspace. How can i do that?
Thanks.
0 Comments
Answers (1)
Pavan Sahith
on 17 Apr 2024
Edited: Pavan Sahith
on 17 Apr 2024
I see that you are encountering an issue while attempting to add a parameter to the mask of a subsystem, following these steps will help you in using a variable from the MATLAB workspace as a mask parameter in your Simulink model.
Ensure that you have accurately defined the variable in the MATLAB Workspace before proceeding.
Steps to set up the Mask Parameter:
These steps will allow you to successfully set a mask parameter. By double-clicking on the subsystem, you can access and review the parameters and their values.
For further information about the Mask Editor and its capabilities, you can refer to the following MathWorks Documentation
Hope this will help you in getting started.
2 Comments
Pavan Sahith
on 18 Apr 2024
Yes , you can proceed with the steps outlined previously up to step 4 for adding a parameter, let's say 'InverseInertia' here and leave the 'Value' field unchanged by default..
Within the Mask Editor's 'code' section, I generally utilize the Mask's callback mode, which can be set by selecting 'Switch Callback Mode' from the toolstrip.
For retrieving the value of a mask parameter from the MATLAB base workspace, you can try to employ the 'set_param' and 'get_param' functions in the manner described below.
% Initialization code section
function initialization()
if evalin('base', 'exist(''inertia'', ''var'')')
inertiaValue = evalin('base', 'inertia');
set_param(gcb, 'InverseInertia', num2str(1/inertiaValue));
else
disp('Variable ''inertia'' not found in workspace.');
end
end
% Parameter callback section
See Also
Categories
Find more on Author Block Masks 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!