Need to change one of my constants into a variable

1 次查看(过去 30 天)
The original question has been removed by the user.

采纳的回答

Paulo Silva
Paulo Silva 2011-12-4
iter=1;
for HofB=2:100
%your code goes here
%don't forget to comment the HofB line of your code
TotLpRec(iter)=TotLp;
iter=iter+1;
end
plot(2:100,TotLpRec)
  2 个评论
Paulo Silva
Paulo Silva 2011-12-4
That code is simple but with even more iterations (more HofB values) it might become slow because TotLpRec isn't preallocated on memory, it's a vector that grows in size each iteration, this is the way with preallocated memory:
iter=1;
TotLpRec=zeros(99,1); %99 values will be saved and plotted
%you must always have a vector TotLpRec with numel(2:100) values or whatever %HofB will be
for HofB=2:100
%your code goes here
%don't forget to comment the HofB line of your code
TotLpRec(iter)=TotLp;
iter=iter+1;
end
plot(2:100,TotLpRec)

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Graphics Object Programming 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by