How to set tunable struct parameters when simulating from

Technical Source
1 min readOct 9, 2021

--

How to set tunable struct parameters when simulating from the command line in Rapid Accelerator mode

I would like to use a struct as a tunable parameter when running in Rapid Accelerator mode from the command line, in order to run simulations in batch. Is this possible?

ANSWER

Matlabsolutions.com provide latest MatLab Homework Help,MatLab Assignment Help for students, engineers and researchers in Multiple Branches like ECE, EEE, CSE, Mechanical, Civil with 100% output.Matlab Code for B.E, B.Tech,M.E,M.Tech, Ph.D. Scholars with 100% privacy guaranteed. Get MATLAB projects with source code for your learning and research.

Yes. We will assume ‘model’ is the name of our model that we wish to run, and that this model has an already-defined struct “x” that contains tunable parameters set by fields “a” and “b”, e.g.:

x.a = 2
?x.b = 3

In this case, we can change the parameters and simulate in Rapid Accelerator mode as follows.

Get the current model and parameter structure:

?rtp = Simulink.BlockDiagram.buildRapidAcceleratorTarget(model)

Set new values for the parameters:

x.a = 4
x.b = 7

Modify the parameters in our model object:

SEE COMPLETE ANSWER CLICK THE LINK

--

--

Technical Source
Technical Source

Written by Technical Source

Simple! That is me, a simple person. I am passionate about knowledge and reading. That’s why I have decided to write and share a bit of my life and thoughts to.

No responses yet