February 06, 2010, at 03:26 AM
by David A. Mellis -
Changed lines 26-28 from:
to:
February 05, 2010, at 09:22 PM
by Paul Badger -
Changed lines 26-27 from:
to:
December 22, 2007, at 10:41 AM
by David A. Mellis -
Changed lines 24-27 from:
* [[float]]()
* [[double]]()
to:
December 22, 2007, at 10:32 AM
by David A. Mellis -
Changed lines 5-7 from:
Calculates the value of a number raised to a power. Pow() can be used to raise a number to a fractional power. This is useful for generating exponential mapping of values or curves.\\
Pow() makes use of the [[math.h|avr-libc library]].
to:
Calculates the value of a number raised to a power. Pow() can be used to raise a number to a fractional power. This is useful for generating exponential mapping of values or curves.
December 22, 2007, at 09:43 AM
by Paul Badger -
Changed lines 25-26 from:
to:
* [[float]]()
* [[double]]()
December 22, 2007, at 09:41 AM
by Paul Badger -
Changed lines 20-21 from:
See the [[../../playground/Main/Fscale|fscale]] function in the code library.
to:
See the [[http://arduino.cc/playground/Main/Fscale|fscale]] function in the code library.
December 22, 2007, at 09:41 AM
by Paul Badger -
Changed lines 20-21 from:
See the [[../playground/Main/Fscale|fscale]] function in the code library.
to:
See the [[../../playground/Main/Fscale|fscale]] function in the code library.
December 22, 2007, at 09:40 AM
by Paul Badger -
Changed lines 20-21 from:
See the fscale function in the code library.
to:
See the [[../playground/Main/Fscale|fscale]] function in the code library.
December 22, 2007, at 09:38 AM
by Paul Badger -
Added lines 18-21:
!!!!Example
See the fscale function in the code library.
December 22, 2007, at 09:37 AM
by Paul Badger -
Changed line 5 from:
Calculates the value of a number raised to a power. Pow() can be used to raise a number to a fractional power. This is useful for generating exponential mapping of values / curves.
to:
Calculates the value of a number raised to a power. Pow() can be used to raise a number to a fractional power. This is useful for generating exponential mapping of values or curves.\\
December 22, 2007, at 09:36 AM
by Paul Badger -
Changed lines 5-6 from:
Calculates the value of a number raised to a power.
to:
Calculates the value of a number raised to a power. Pow() can be used to raise a number to a fractional power. This is useful for generating exponential mapping of values / curves.
Pow() makes use of the [[math.h|avr-libc library]].
Changed lines 10-13 from:
base: the number
exponent: the power to raise it to
to:
base: the number (''float'')
exponent: the power to which the base is raised (''float'')
Changed lines 16-17 from:
The result of the exponentiation.
to:
The result of the exponentiation (''double'')
November 21, 2007, at 10:26 AM
by David A. Mellis -
Added lines 1-21:
!!pow(base, exponent)
!!!!Description
Calculates the value of a number raised to a power.
!!!!Parameters
base: the number
exponent: the power to raise it to
!!!!Returns
The result of the exponentiation.
!!!!See also
* [[sqrt]]()