How to link a plot or continous data from M-file to Simulink Model
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
chittaranjan pradhan
am 27 Dez. 2012
Kommentiert: chittaranjan pradhan
am 23 Jan. 2014
I have done a wind turbine Model. In M-file ,I have written the code of the wind power characteristics for different wind speed with respect to rootr speed. Please, help me ..How can I link the wind speed (Wind~Time graph)from M-file to Simulink Model??
When I used "Sim..." command only latest data came. Here, The wind Speed~Time is a continuous graph or data.So, How can I call the continuous datas or graph from the M-file to Simulink Model.
0 Kommentare
Akzeptierte Antwort
Muruganandham Subramanian
am 27 Dez. 2012
Bearbeitet: Muruganandham Subramanian
am 27 Dez. 2012
Have you tried with From workspace block?
1 Kommentar
Weitere Antworten (1)
Azzi Abdelmalek
am 27 Dez. 2012
Bearbeitet: Azzi Abdelmalek
am 27 Dez. 2012
You can use from file or from workspace block
Example
t=0:0.1:10
y=sin(t)
ty=[t' y']
then set the value of your from workspace block to ty
2 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!