How can I save multiple Data.mat from an Simulink Model Output;

5 次查看(过去 30 天)
I have an output data from a simulink model. I want to save the output data inside a loop for a different input variable. How can I do that?
for i=1:1:200
np = 800+i; % input variable to simulink model
sim('Simulink_Model') % output data
save('Data.mat','Data'); % save('FileName','Variables');
end

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2016-7-21
编辑:Azzi Abdelmalek 2016-7-21
for ii=1:200
np = 800+i; % input variable to simulink model
sim('Simulink_Model') % output data
M(:,:,ii)=Data %or M(:,ii) depending on the dimension of Data
end
save('Data.mat','M'); % save('FileName','Variables');

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Programmatic Model Editing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by