Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
What's wrong with this code?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I am getting this error msg. Please find me the mistakes here.
In an assignment A(I) = B, the number of elements in B and I must be the same.
r=[2.0 3.1 3.5 3.65 3.84 3.95];
x=[];
x(1)=0.35;
f=@(x) r*x*(1-x);
N=40;
for t=1:N-1;
x(t+1)=f(x(t));
end
hold on
plot(x,'r-')
0 Commenti
Risposte (2)
Joseph Cheng
il 21 Mar 2014
yes thats because you are including information that is not here and in your other posting that was flagged. but looks like you have it so we're all set?
3 Commenti
Joseph Cheng
il 21 Mar 2014
only rude comment from me would be that posting on a forum for assignment questions involving things besides what type of functions to use, function errors, random matlab issues, and approaches to handling data is cheating. The Teaching Assistant or office hours should be where assignment related questions be asked.
Joseph Cheng
il 21 Mar 2014
Modificato: Joseph Cheng
il 21 Mar 2014
Were you attempting to do this?
r=[2.0 3.1 3.5 3.65 3.84 3.95];
x=[];
x(1,:)=0.35*ones(size(r));
f=@(x) r*x*(1-x);
N=40;
for t=1:N-1;
x(t+1,:)=f(x(t));
end
hold on
plot(x)
legend('r = 2.0','r = 3.1', 'r = 3.65')
Where the first value of x is 0.35? or you can re-write it such that the function
f=@(x,r) r*x*(1-x);
such that you write a for loop to cycle in the r you need.
8 Commenti
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!