How to send Simulink variable to matlab?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How to send simulink variable to matlab?
I have a variable like a sine wave which is generated in simulink using signal generator.
This signal has to be plot in matlab using "plot ".
I have used "to workspace " in simulink to send it to matlab workspace.
After this ,how can I use this signal (time series) in plot ?
How to plot this?
I have written : plot(t, simout);
Is there any mistake I have made while using simout variable?
1 comentario
KaMATLAB
el 3 de Feb. de 2021
click on the 'workspace block' change the Timeseries field to 'array'. Also it is better if you can name your variable for instance y instead of using 'simout'. Also just clik on the 'workspace block' and name your variable
Respuestas (2)
Timo Dietz
el 3 de Feb. de 2021
Editada: Timo Dietz
el 3 de Feb. de 2021
Timeseries signals can be plotted directly: plot(simout) or separated by x and y: plot(simout.Time, simout.Data)
0 comentarios
KaMATLAB
el 3 de Feb. de 2021
click on the 'workspace block' change the Timeseries field to 'array'. Also it is better if you can name your variable for instance y instead of using 'simout'. Also just clik on the 'workspace block' and name your variable
0 comentarios
Ver también
Categorías
Más información sobre Sources en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!