show/hide this revision's text 2 `fabs` …

If you have a value like:

double theta = 21.4;

And you want to do:

if (theta == 21.4)
{
}

You have to be a bit clever, you will need to check if the value of theta is really close to 21.4, but not necessarily that value.

if (abs(theta fabs(theta - 21.4) <= 1e-6)
{
}
show/hide this revision's text 1
If you have a value like:

double theta = 21.4;

And you want to do:

if (theta == 21.4)
{
}

You have to be a bit clever, you will need to check if the value of theta is really close to 21.4, but not necessarily that value.

if (abs(theta - 21.4) <= 1e-6)
{
}