Borrar filtros
Borrar filtros

if within while loop not recognized

1 visualización (últimos 30 días)
Ramu Nair R
Ramu Nair R el 2 de Abr. de 2018
Editada: Ramu Nair R el 2 de Abr. de 2018
while(t<0.1)
if(t==0.05) v=3; end % NOT GETTING REFLECTED IN v
t=t+Ts;
end

Respuesta aceptada

Birdman
Birdman el 2 de Abr. de 2018
Editada: Birdman el 2 de Abr. de 2018
A trivial answer:
Use ismembertol for comparing values with tolerance
tol=1e-6;
if ismembertol(t,0.05,tol)

Más respuestas (1)

John D'Errico
John D'Errico el 2 de Abr. de 2018
NEVER test for exact equality of a floating point number.
Since doubles are stored in binary, remember that almost all decimal fractions cannot be represented exactly as a double, just like you cannot represent 1/3 exactly as a terminating decimal in a limited number of decimal digits. Doubles use 52 binary bits to store the mantissa, so that is your limit.
Instead, 0.05 is stored as the closest value possible. So never test for exact equality. Just use a tolerance.
if abs(t - 0.05) < 1e-16

Categorías

Más información sobre Resizing and Reshaping Matrices 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