Top "Exponent" questions

Exponentiation is a mathematical operation, written as b raised to the power of n, involving two numbers, the base b and the exponent (or power) n.

Exponentiation in Haskell

Can someone tell me why the Haskell Prelude defines two separate functions for exponentiation (i.e. ^ and **)? I thought the …

haskell exponent exponentiation
Convert numbers with exponential notation from string to double or decimal

Is there a fast way to convert numbers with exponential notation (examples: "0.5e10" or "-5e20") to decimal or double? …

c# .net exponent
Fast method of calculating square root and power?

C#'s Math class does roots and powers in double only. Various things may go a bit faster if I …

c# math exponent
Recursive Exponent Method

public static int exponent(int baseNum) { int temp = baseNum *= baseNum; return temp * exponent(baseNum); } Right now the method above does …

java methods recursion exponent
In Matlab how to use variables for the numbers in scientific notation (matissa and exponent)?

I am using Matlab and using numbers in scientific notation, which are represented with the letter e for the exponent. …

matlab exponent mantissa
How to convert a string containing an exponential number to decimal and back to string

I'm converting code between delphi and c#. Values are stored as strings in a text file from the delphi app. …

c# .net decimal exponent
UNIX sort with exponential values?

I have a csv file with 7 fields of data. I want to sort the 7th field in reverse numerial order (…

unix sorting csv exponent
Number of digits in exponent

Is it possible to set the number of digits to be used for printing the exponent of a floating-point number? …

python floating-point exponent
Rounding to a power of 10

I have a variable, tauMax, that I want to round up to the nearest power of ten(1, 10, 100, 1000...). I am using …

matlab rounding logging exponent
Calculating powers (e.g. 2^11) quickly

Possible Duplicate: The most efficient way to implement an integer based power function pow(int, int) How can I calculate …

algorithm exponent