Can someone tell me what is wrong with this?

1 次查看(过去 30 天)
x1=5;
tau=0.1;
k=1;
while x(k)-x(k+1)>0.01
k=k+1;
x(k+1)=x(k)-tau*(2*x(k)-2);
end
figure(1)
plot(x,'b*-.');
grid;
  6 个评论
M
M 2019-11-13
Why do you want it to work with a while loop ?
To see a comparison between for and while loops, you can have a look here:
Ewa Jablonska
Ewa Jablonska 2019-11-13
Because our lecturer said we should figure it out with while loop. :/

请先登录,再进行评论。

采纳的回答

Ewa Jablonska
Ewa Jablonska 2019-11-13
Thanks for effort, i mixed up + with -. :/ Correct:
%Value of step coefficient tau=0.1
x(1)=5;
k=1;
tau=0.1;
while x(k)>1.01
k=k+1;
x(k+1)=x(k)-tau*(2*x(k)-2);
end
plot(x,'b*-');
grid;

更多回答(3 个)

Fangjun Jiang
Fangjun Jiang 2019-11-13
The problem is, vector x is not defined. When you do x1=5, I think you meant x(1)=5. But even with that, when k=1, x(2) is not defined yet.
The solution is to add these lines at the begining.
N=100;x=zeros(N,1);x(1)=5;
  1 个评论
Ewa Jablonska
Ewa Jablonska 2019-11-13
%Value of step coefficient tau=0.1
x(1)=5;
k=1;
tau=0.1;
while x(k)>0.1
k=k+1;
x(k+1)=x(k)+tau*(2*x(k)+2);
end
plot(x,'b*-')
error:
Index exceeds array bounds.
Error in zad12p (line 7)
x(k+1)=x(k)+tau*(2*x(k)+2);

请先登录,再进行评论。


David Hill
David Hill 2019-11-13
function x = Minimum(tau,xx)
x(1)=xx;
x(2)=x(1)-tau*(2*x(1)-2);
k=2;
while abs(x(k)-x(k-1))>0.01
x(k+1)=x(k)-tau*(2*x(k)-2);
k=k+1;
end
end
  2 个评论
David Hill
David Hill 2019-11-13
you can see x in the workspace,
type 'disp(x)' and return,
or just type 'x' and return.

请先登录,再进行评论。


Steven Lord
Steven Lord 2019-11-13
I'm guessing from the fact that you define x1 but don't use it that the x variable may not exist. You may have been thinking / hoping that MATLAB would use x1, x2, etc. when it saw x(1), x(2), etc. but it does not.
The fact that you're using x(k+1) (not x(k-1)) in your while condition also smells a bit strange. You may be walking off the end of the x array.
But if correcting these does not resolve the problem, please state more clearly the specific difficulty you're experiencing.
Do you receive an error message (text displayed in red)? If so, tell us on which line the error occurs and show us the full and exact text of the error, all the text displayed in red exactly as it's displayed in the Command Window.
Do you receive a warning (text displayed in orange)? If so, do the same as for an error but show us all the text displayed in orange.
Do you get a different answer than you expected? If so, show us the answer you received and the answer you expected and explain why you expected what you expected.
Does something else happen? If so, what?
  1 个评论
Ewa Jablonska
Ewa Jablonska 2019-11-13
%Value of step coefficient tau=0.1
x(1)=5;
k=1;
tau=0.1;
while x(k)>0.1
k=k+1;
x(k+1)=x(k)-tau*(2*x(k)+2);
end
plot(x,'b*-')
error: Index exceeds array bounds.
Error in zad12p (line 7)
x(k+1)=x(k)-tau*(2*x(k)+2);
No oragne just red.
Tasks given and must use while loop, because we did for "for loop":
12.png
The ponit is that function should end at specific value but it does not even with higher go to value.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品


版本

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by