我试图在我的代码中通过我的 tspan 运行一个 forloop,以便某些参数随时间变化(特别是每个季节)。
到目前为止,这就是我在那部分代码中的内容:
Tmax = 7300; %years times days
tspan = 0:1:Tmax; %tspan from day 1 to Tmax
Mu = [500 1500 500 0]; %vectors for each function of t, with values per season starting with spring
Day = zeros(Tmax,1);
count = 1;
for t = 1:Tmax
S = floor(mod(t,365)/(366/4))+1; %Denotes the season
Day(t) = Mu(S);
end
但是,我不断收到错误“未定义的函数或变量 S”。有什么见解吗?