while loop and for loop get different result

1 visualización (últimos 30 días)
LIN kai
LIN kai el 2 de Ag. de 2018
Editada: Stephen23 el 3 de Ag. de 2018
This is a simple problem.I think I had coded correct.But it's still have some problem. The problem is why these three plot are different?

Respuestas (3)

Masoud
Masoud el 2 de Ag. de 2018
I saw no difference in figures, but your loops may be different because you wrote : "while t<40" which does not include the 40, it self. But "for" contains the upper bound, which is 40. In other word, your first loop is done 4000 times, however, the "for" loop runs 4001 times. This may be the main result of difference that you are looking for.

Bob Thompson
Bob Thompson el 2 de Ag. de 2018
The while loop doesn't produce the same plot because the values of t are not exactly the same as the values desired. If you look at the final value of t in long format you get 40.000000000000611. Although this is effectively 40, when you subtract 40 from it you do not get 0, so the dirac() command does not result in 0.
Unfortunately, I do not know why the while loop produces this error, but it is the reason you aren't getting the same plot.
  2 comentarios
Stephen23
Stephen23 el 2 de Ag. de 2018
Editada: Stephen23 el 3 de Ag. de 2018
"Unfortunately, I do not know why the while loop produces this error..."
Because of this line:
t=t+0.01;
The value 0.1 cannot be represented using binary floating point numbers, so that addition is actually
t = t+0.1+someError
This addition (with error) is repeated lots of times, thus introducing more and more error into the calculated values. In short, using a loop is a bad way to define those values. MATLAB offers much more numerically robust methods via linspace and the colon operators.
Learn about the practical limits of floating point numbers:
And some external links on this topic:
Bob Thompson
Bob Thompson el 2 de Ag. de 2018
Huh, I suppose the binary makes sense. I had been able to track it down to that line as well, I just didn't have a good reason of why there was error.

Iniciar sesión para comentar.


LIN kai
LIN kai el 3 de Ag. de 2018
Thanks for everyone's answer. I'm already understand.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by