About 50 results
Open links in new tab
  1. numpy - How to do exponential and logarithmic curve fitting in Python ...

    Aug 8, 2010 · 250 I have a set of data and I want to compare which line describes it best (polynomials of different orders, exponential or logarithmic). I use Python and Numpy and for polynomial fitting there …

  2. matlab - Easy logaritmic curve fitting - Stack Overflow

    May 15, 2021 · I am trying to model some measures (lux, ohm) that behave as a logarithmic function. In order to do it, I've tried to model it with MATLAB by projecting the real values using natural …

  3. Python using curve_fit to fit a logarithmic function

    Jan 18, 2020 · I'm trying to fit a log curve using curve_fit, assuming it follows Y=a*ln(X)+b, but the fitted data still looks off. Right now I'm using the following code: from scipy.optimize import curve_fit ...

  4. big o - Order the growth rate of a function - Stack Overflow

    Apr 2, 2014 · 2 logarithmic (exp n=1/c) 3 linear (exp n^1) 4 polinomial (exp n^c) 5 exponential (exp c^n) 6 factorial (exp n!) that's the basic rule. On the long run each one "wins" against the lower ones (e.g. …

  5. algorithm - What does O (log n) mean exactly? - Stack Overflow

    Feb 22, 2010 · 13 O(log n) refers to a function (or algorithm, or step in an algorithm) working in an amount of time proportional to the logarithm (usually base 2 in most cases, but not always, and in …

  6. Determine if a set of data is from a linear or logarithmic function?

    Aug 24, 2011 · Similarly if the data points followed the function f (x) = log (x), I would be able to visually tell it is logarithmic. On the other hand, having the program determine if a set of data is linear or …

  7. r - Logarithmic interpolation with geom_smooth - Stack Overflow

    Jun 23, 2022 · My idea was to make a geom_smooth with logarithmic function, but I am not able to do it and browsing in stackoverflow I was not able to find a solution. Does somebody know how I can do? …

  8. Fitting logarithmic curve in R - Stack Overflow

    Aug 3, 2016 · Fitting logarithmic curve in R Asked 13 years, 6 months ago Modified 9 years, 6 months ago Viewed 44k times

  9. Fit a logarithmic curve to data points and extrapolate out in numpy

    Apr 20, 2018 · I would like to plot these points, and fit a curve to them that shows what value of x would be required to make y = 100.0 (y values are percentages). Here is what I have tried, but my curve is …

  10. How do you do natural logs (e.g. "ln()") with numpy in Python?

    Also like MATLAB/Octave, Numpy does not offer a logarithmic function for an arbitrary base. If you find log confusing you can create your own object ln that refers to the numpy.log function: