到目前为止,我有这个:
time=(0:15:16*1440);
data=zeros(3,length(time));
for i=1:length(time)
(not sure what goes here)=ValidateTime(0,0,time(i));
end
validateTime 是我的函数,它返回 3 个值。如何将函数的输出存储到我之前创建的数据矩阵中?
到目前为止,我有这个:
time=(0:15:16*1440);
data=zeros(3,length(time));
for i=1:length(time)
(not sure what goes here)=ValidateTime(0,0,time(i));
end
validateTime 是我的函数,它返回 3 个值。如何将函数的输出存储到我之前创建的数据矩阵中?