What is this error in Script file?
显示 更早的评论
X=zeros (1,1301);
time =0:0.05:65;
k=0.05;
for i=2:1301
X(i) = ((k*(0.293*X(i-1)^2)-(0.542*X(i-1))+0.354)*0.05) +X(i-1);
end
plot (time, X)
hold on
plot (timeopc25, alphaopc25,'--')
legend('Predicted Data','Experimental data');
It tells, not formed from a valid matlab identifier. What does this mean? Thanx in advance
4 个评论
Star Strider
2014-10-5
It runs until it gets to the second plot call.
Obvious question:
What are ‘timeopc25’, and ‘alphaopc25’?
Are they important to your question?
adrooney
2014-10-6
Star Strider
2014-10-6
We don’t have ‘timeopc25’, and ‘alphaopc25’ so we can’t help you with them.
adrooney
2014-10-6
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 App Building 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!