Loading...

Reference.Abs History

Hide minor edits - Show changes to markup

June 01, 2010, at 08:59 AM by Equipo Traduccion -
Changed lines 9-10 from:

x: El numero

to:

x: El numero cuyo valor absoluto deseamos calcular

June 01, 2010, at 08:58 AM by Equipo Traduccion -
Changed lines 3-20 from:

Description

Computes the absolute value of a number.

Parameters

x: the number

Returns

x: if x is greater than or equal to 0.

-x: if x is less than 0.

Warning

Because of the way the abs() function is implemented, avoid using other functions inside the brackets, it may lead to incorrect results.

to:

Descripción

Calcula el valor absoluto de un número.

Parámetros

x: El numero

Devuelve

x: si x is mayor o igual que 0.

-x: si x es menor que 0.

Precaución

Debido a la forma en la que se ha implementado la función abs(), evite usar otras funciones como parámetro debido a que puede ocasionar que se devuelva un resultado incorrecto.

Changed lines 22-25 from:

abs(a++); // avoid this - yields incorrect results

a++; // use this instead - abs(a); // keep other math outside the function

to:

abs(a++); // evite esto - produce errores en el resultado

a++; // hazlo de esta manera - abs(a); // mantenga cualquier otra operación fuera de la función

February 06, 2010, at 03:26 AM by David A. Mellis -
Changed lines 29-32 from:

See also

to:
February 05, 2010, at 08:51 PM by Paul Badger -
Added lines 28-32:

See also

January 27, 2009, at 06:26 AM by David A. Mellis -
Changed lines 22-25 from:

abs(a - 100, 0); // avoid this - yields incorrect results

a -= 100; // use this instead - abs(a, 100); // keep other math outside the function

to:

abs(a++); // avoid this - yields incorrect results

a++; // use this instead - abs(a); // keep other math outside the function

January 27, 2009, at 12:56 AM by Paul Badger -
Changed lines 19-20 from:

Because of the way the abs() function is implemented, avoid using other functions inside the brackets, it may lead to incorrect results

to:

Because of the way the abs() function is implemented, avoid using other functions inside the brackets, it may lead to incorrect results.

January 27, 2009, at 12:56 AM by Paul Badger -
January 27, 2009, at 12:55 AM by Paul Badger -
Changed lines 19-20 from:

Because of the way the max() function is implemented, avoid using other functions inside the brackets, it may lead to incorrect results

to:

Because of the way the abs() function is implemented, avoid using other functions inside the brackets, it may lead to incorrect results

January 27, 2009, at 12:55 AM by Paul Badger -
Added lines 17-27:

Warning

Because of the way the max() function is implemented, avoid using other functions inside the brackets, it may lead to incorrect results

abs(a - 100, 0);   // avoid this - yields incorrect results

a -= 100;          // use this instead -
abs(a, 100);       // keep other math outside the function

April 16, 2007, at 12:07 PM by Paul Badger -
Deleted line 16:
December 02, 2006, at 12:59 PM by David A. Mellis -
Added lines 1-17:

abs(x)

Description

Computes the absolute value of a number.

Parameters

x: the number

Returns

x: if x is greater than or equal to 0.

-x: if x is less than 0.

Reference Home