enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. File:Learning curve models- Wright, Plateau, Stanford-B ...

    en.wikipedia.org/wiki/File:Learning_curve_models...

    English: ```python %config InlineBackend.figure_formats = ['svg'] import matplotlib.pyplot as plt %matplotlib inline import matplotlib.pyplot as plt import numpy as np Define range of x (total number of units made) x = np.exp(np.linspace(0, np.log(1000), 1000)) Define constant parameters

  3. File:Cylindrical-magnet-force-diagram loglog.svg - Wikipedia

    en.wikipedia.org/wiki/File:Cylindrical-magnet...

    #!/usr/bin/python # -*- coding: utf8 -*-import numpy as np import scipy.special as sp import matplotlib.pyplot as plt import matplotlib as mpl from math import * mpl. style. use ("classic") # fix elliptic integrals for negative argument in case of old scipy version if sp. ellipe (-1) > 0: E = sp. ellipe K = sp. ellipk else: def E (m): if m >= 0.: return sp. ellipe (m) else: return sp. ellipe ...

  4. Log–log plot - Wikipedia

    en.wikipedia.org/wiki/Log–log_plot

    A log–log plot of y = x (blue), y = x 2 (green), and y = x 3 (red). Note the logarithmic scale markings on each of the axes, and that the log x and log y axes (where the logarithms are 0) are where x and y themselves are 1. Comparison of linear, concave, and convex functions when plotted using a linear scale (left) or a log scale (right).

  5. Matplotlib - Wikipedia

    en.wikipedia.org/wiki/Matplotlib

    Matplotlib (portmanteau of MATLAB, plot, and library [3]) is a plotting library for the Python programming language and its numerical mathematics extension NumPy.It provides an object-oriented API for embedding plots into applications using general-purpose GUI toolkits like Tkinter, wxPython, Qt, or GTK.

  6. File:Chernoff-bound.svg - Wikipedia

    en.wikipedia.org/wiki/File:Chernoff-bound.svg

    Python code. from __future__ import division import numpy as np from scipy.special import gammaincc import matplotlib.pyplot as plt plt. style. use ... plt. loglog (z ...

  7. Logarithmic scale - Wikipedia

    en.wikipedia.org/wiki/Logarithmic_scale

    Semi-log plot of the Internet host count over time shown on a logarithmic scale. A logarithmic scale (or log scale) is a method used to display numerical data that spans a broad range of values, especially when there are significant differences between the magnitudes of the numbers involved.

  8. Sieve of Eratosthenes - Wikipedia

    en.wikipedia.org/wiki/Sieve_of_Eratosthenes

    The time complexity of calculating all primes below n in the random access machine model is O(n log log n) operations, a direct consequence of the fact that the prime harmonic series asymptotically approaches log log n. It has an exponential time complexity with regard to length of the input, though, which makes it a pseudo-polynomial algorithm.

  9. Semi-log plot - Wikipedia

    en.wikipedia.org/wiki/Semi-log_plot

    On a semi-log plot the spacing of the scale on the y-axis (or x-axis) is proportional to the logarithm of the number, not the number itself. It is equivalent to converting the y values (or x values) to their log, and plotting the data on linear scales. A log–log plot uses the logarithmic scale for both axes, and hence is not a semi-log plot.