I don't know if this will help but here is the view from the mask editor panel (part of image is cut off unless you expand the it):
How to copy subsystem parameters from one model to another
4 views (last 30 days)
Show older comments
John Eganhouse
on 28 Jun 2022
Answered: Muthukumar Ganesan
on 12 Jul 2022
I am having some issues with copying the initial conditions from one masked subsystem to another. I need to do this because I am testing a number of neural networks. The parameters represent the initial conditions/preprocessed inputs which are different for each new network. These Values from the 'Parameters' section I need to copy from one model to another. I can't just copy the entire block since the structure of the source block is slightly different than the destination.
See destination below destination block.
See initial masked block:
The block is called NARX Neural Network in both models but the contents are not the same, however the mask parameters are the exact same just the values will change. When I use get_param for 'DialogParameters' I get:
These structs don't contain the actual values. I don't know what commands I should use to copy the source initial conditions and place them in the destination. I'm not sure what other relavant information I could include. The release is actually 2019a because of depricated simscape multibody elements in the model but that shouldn't effect this question I think compared to 2022a. Thanks in advance.
2 Comments
Accepted Answer
Muthukumar Ganesan
on 12 Jul 2022
Hi,
Please use the following command to copy the Mask parameter values from source block to destination if the order and number of parameters are same.
set_param(<DestBlockPath>,'MaskValueString',get_param(<SrcBlockPath>,'MaskValueString'))
Thanks.
0 Comments
More Answers (0)
See Also
Categories
Find more on Sequence and Numeric Feature Data Workflows 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!