Filter löschen
Filter löschen

how can i save the output in simulink?

33 Ansichten (letzte 30 Tage)
ADNAN KIRAL
ADNAN KIRAL am 20 Dez. 2018
Kommentiert: ADNAN KIRAL am 21 Dez. 2018
Hi there,
Is that possible to save multi-output in Simulink? I do have 100 different input. Each input will have different output, and I want to keep all those outputs resulted from 100 different input in a one mat file. Is that possible?
thanks
  2 Kommentare
Jim Riggs
Jim Riggs am 20 Dez. 2018
Bearbeitet: Jim Riggs am 20 Dez. 2018
Your question is not clear to me.
It sounds like you have a simulink model that you want to run 100 times using 100 different input values, creating 100 corresponding output data sets.
Or, is it the case that you have 100 separate signals that you want to combine into a single output?
ADNAN KIRAL
ADNAN KIRAL am 20 Dez. 2018
the first one is the problem
"you have a simulink model that you want to run 100 times using 100 different input values, creating 100 corresponding output data sets".
if you can help me, ı will be much-appreciated
It will save my time a lot.
CHEERS.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Jim Riggs
Jim Riggs am 20 Dez. 2018
Bearbeitet: Jim Riggs am 20 Dez. 2018
I think that the best way to accomplish this is set up the Simulink model so that is saves the output to the Matlab workspace using a "To Workspace" block. Then, make a script file that will run the Simulink model, providing the desired inputs. In the script file, after the simulink model has run, put the output into a Matlab structure (you can put the inputs in the structure too). Use a loop in the script file to execute all of the model runs, saving the inputs and outputs each iteration in the data structure. This way, you can hold 100 sets of data (inputs and outputs) in a single structure. When done, save the data structure to a .mat file using the Matlab "save" command.
  4 Kommentare
Jim Riggs
Jim Riggs am 21 Dez. 2018
Bearbeitet: Jim Riggs am 21 Dez. 2018
For example, suppose I create a Simulink model named "MyWave" that generates a sine wave. It multiplies the wave amplitude by "ampl". Variable ampl is defined in the matlab workspace. The "To Workspace" block is set up to save the output signal to the matab workspace as an array in variable "output".
I run this model using a script to define the required amplitude:
ampl = 5;
sim ('MyWave');
After the model runs, variable "output" contains the result, a sine wave with amplitude 5. The size of "output" depends on the settings for the Simulink model, i.e. how long to run, and what time step to use.
ADNAN KIRAL
ADNAN KIRAL am 21 Dez. 2018
thank you so much. appriciate your explanation, Jim @Jim Riggs

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Programmatic Model Editing finden Sie in Help Center und File Exchange

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by