Continue simulation: resize workspace variables

조회 수: 2 (최근 30일)
Amy
Amy 2017년 2월 24일
댓글: Sudarshan Kolar 2017년 2월 28일
Hello!
I have run a simulation for 10.000 increments. Now I want to continue on this simulation so that in total 30.000 increments will be run.
For this purpose I want to use a loop to look at all the workspace variables and preallocate them without losing the older values:
for all variables in the workspace
if size(variable,1)==10000
variable(30000,:)=0
elseif size(variable,2)==10000
variable(:,30000)=0
end
end
How can I do this?
I found the following things that could be an ingredient:
list=who;
size(char(list(1)));
  댓글 수: 3
Amy
Amy 2017년 2월 28일
Nothing is changed except for the number of increments that I want to run and the final time that I want to run it.
Sudarshan Kolar
Sudarshan Kolar 2017년 2월 28일
You can write a script that runs the model for 10 increments. Saves the data in an array and re-run the simulation for say 20 increments.
As an example, say my model has a "To workspace" block that logs a variable called "var1" every simulation.
storeData = []; %preallocate this for speed
sim('vdp','StopTime','10');
storeData = [storeData var1];
sim('vdp','StartTime','10','StopTime','20');
storeData = [storeData var1];
sim('vdp','StartTime','20','StopTime','30');
storeData = [storeData var1];
You can also use SimState for this.

댓글을 달려면 로그인하십시오.

채택된 답변

Amy
Amy 2017년 2월 28일
Thank you for your responses.
I solved my problem by doing the preallocation using A(30000,:)=0 instead of A=zeros(30000,xxx).

추가 답변 (1개)

Walter Roberson
Walter Roberson 2017년 2월 27일
  댓글 수: 1
Amy
Amy 2017년 2월 28일
I don't think that that applies to my question.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Variables에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by