how to send Data to workspace

1 回表示 (過去 30 日間)
Arun Badigannavar
Arun Badigannavar 2013 年 1 月 7 日
How to send data to workspace continuosly whenever my simulink model has been paused by below code,,I am using a simple constant block and to workspace block
tic
open_system('');
for i=1:1:10
set_param('SampleTest','StopTime', sprintf('%d',i));
set_param('SampleTest', 'Simulationcommand', 'start')
pause(1)
set_param('SampleTest', 'Simulationcommand', 'update')
set_param('SampleTest', 'Simulationcommand', 'continue')
end
toc
  2 件のコメント
Arun Badigannavar
Arun Badigannavar 2013 年 1 月 7 日
I am trying this but data will come to base workspace oly after my code finishes 10 steps
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 1 月 8 日
Do you mean after 10, itterations?

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

採用された回答

Kaustubha Govind
Kaustubha Govind 2013 年 1 月 7 日
Please see the second paragraph in my answer here for an explanation of what you're seeing. If you'd like your workspace to be updated immediately, you might need to write your own MATLAB code to do this. You can follow the technique described in Access Block Data During Simulation to run your MATLAB code as soon as a new output value becomes available.
  1 件のコメント
Arun Badigannavar
Arun Badigannavar 2013 年 1 月 11 日
I have found the solution,,,I avoided paassing variables value to workspace,,,rather am directly calling the values to next model wher i require them,,thanks for ur help i learnt usefull things

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

その他の回答 (0 件)

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by