About 139,000 results
Open links in new tab
  1. What is the benefit of using exponential backoff?

    Feb 26, 2015 · Exponential backoff is beneficial when the cost of testing the condition is comparable to the cost of performing the action (such as in network congestion). if the cost of …

  2. Big O Notation Of Exponential Functions - Stack Overflow

    Sep 29, 2013 · this means that c = 1.5^n which is not a rational number, but an exponential function on its own. On the other hand, following the same for 3^n in O(2^n), we would get 2^n …

  3. How to generate exponential series of values with known initial …

    Aug 27, 2015 · Exponential regression equation is the form y=a*e^(bx). Power regression equation is the form y=a*x^(b) . In excel EXP(x) function return e^x , e is euler number …

  4. How do you do exponentiation in C? - Stack Overflow

    Dec 24, 2024 · pow only works on floating-point numbers (doubles, actually).If you want to take powers of integers, and the base isn't known to be an exponent of 2, you'll have to roll your own.

  5. Calculating delay with exponential backoff - Stack Overflow

    Jan 8, 2019 · This is an example of exponential backoff where the first step is only half of the delay? The purpose of it is to not delay too much for the very first step, that's all. – zaitsman

  6. python - Exponential curve fitting in SciPy - Stack Overflow

    Firstly I would recommend modifying your equation to a*np.exp(-c*(x-b))+d, otherwise the exponential will always be centered on x=0 which may not always be the case. You also need …

  7. How to get actual value from CSV file instead exponential value

    Apr 13, 2014 · As per my requirement I need to read data from CSV file which is having exponential values. I need to have exact value instead of exponential. In my application I am …

  8. numpy - Curve fit an exponential decay function in Python using …

    Mar 30, 2018 · The problem is that exp(-15000) has to be balanced off by ridiculously large values of a, and the problem becomes really badly scaled, so the optimization routine fails.

  9. Convert exponential to number in sql - Stack Overflow

    I have a large amount of card tokens (16 digits) uploaded from xml file to sql-server. The problem is I see them as expression, sample below: 3.3733E+15 3.3737E+15 3.3737E+15 …

  10. pow - Does Java have an exponential operator? - Stack Overflow

    Is there an exponential operator in Java? For example, if a user is prompted to enter two numbers and they enter 3 and 2, the correct answer would be 9. import java.util.Scanner; public class

Refresh