What is this error in Script file?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
adrooney
il 5 Ott 2014
Commentato: Anees kazi
il 14 Ago 2015
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 Commenti
Star Strider
il 6 Ott 2014
We don’t have ‘timeopc25’, and ‘alphaopc25’ so we can’t help you with them.
Risposta accettata
Bruno Pop-Stefanov
il 6 Ott 2014
This error usually occur when there is a space in an M-file, or other forbidden characters. Check that the script file containing the code has a correct name with no white spaces.
This is incorrect: "my file.m"
This is correct: "myfile.m"
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!