how to access array of structures in simulink which are loaded from work space using preload fcn, updating the structure values in runtime and these updated values to be implemented in model?

3 ビュー (過去 30 日間)
code :
p(1).x = 0; p(1).y = 0; p(1).name='one'; p(2).x = 1; p(2).y = 1; p(2).name='two';
I know to save variables in .m file during simulation, and also loading that .m file in simulink -> model properties -> preload function
If we load the model, preload function will be executed only once during start of simulation, but i need to change values continuously in workspace that should be dynamically updated in simulink model. so will this preload function gives these updated values to simulink at runtime? i tried but didnt get, so is there any other way for this? how to get these updated variables in simulink model?
then how to access the array of structure in simulink model? I need to use array of structures in simulink, how to access and use it in models?
  2 件のコメント
Kaustubha Govind
Kaustubha Govind 2013 年 8 月 29 日
Could you clarify whether you intend to use the structure as a signal or as a parameter in Simulink?
Dhaklesh kumar
Dhaklesh kumar 2013 年 9 月 2 日
編集済み: Dhaklesh kumar 2013 年 9 月 2 日
It is a parameter like C language structure, but it will not have time parameter, i need to access the values which are in that array of structure in simulink, can you explain me how to get values from that array of structure in simulink.

サインインしてコメントする。

採用された回答

Vishal Rane
Vishal Rane 2013 年 8 月 28 日
Use:
set_param( MdlName, 'PreloadFcn', YourFunction);
this works during simulation as well.
Similarly you can set the StopFcn to save the data generated during simulation to a mat file.
  1 件のコメント
Dhaklesh kumar
Dhaklesh kumar 2013 年 8 月 29 日
編集済み: Dhaklesh kumar 2013 年 8 月 29 日
Thanks for ur reply. but i have updated the question, so can use check the updated query and give the answer.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSimulink Functions についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by