File:MDKQ1.svg
Original file (SVG file, nominally 378 × 288 pixels, file size: 36 KB)
Captions
Summary
[edit]DescriptionMDKQ1.svg |
Deutsch: Fit einer Logistischen Funktion an Messdaten |
Date | |
Source | Own work, Neufassung von File:LogistischeFunktion.png vom Benutzer de:User:Philipendula |
Author | Christian Schirm |
SVG development InfoField | This plot was created with Matplotlib. |
Source code InfoField | Python code# This source code is public domain
import numpy
import matplotlib.pyplot as plt
import matplotlib.ticker as ticker
G=1
k=1
f0=0.5
x = numpy.linspace(-8,8,16)[1:-1]
numpy.random.seed(50)
y =numpy.random.normal(G/(1+numpy.exp(-k*G*x)*(G/f0-1)),0.1)
err=1E8
err=numpy.mean(numpy.square(y-G/(1+numpy.exp(-k*G*x)*(G/f0-1))))
print(err,G,k,f0)
numpy.random.seed(2)
for i in range(5000):
faktor=1+0.01*(numpy.random.rand()-.5)
for ivar in 1,2,3:
backup=[err,G,k,f0]
var=backup[:]
var[ivar]=var[ivar]*faktor
err,G,k,f0=var
err_neu = numpy.mean(numpy.square(y-G/(1+numpy.exp(-k*G*x)*(G/f0-1))))
if err_neu<err:
err=err_neu
else:
var[ivar]=backup[ivar]
err,G,k,f0=var
print(err,G,k,f0,"(Fehlerquadrat minimiert)")
xneu = numpy.linspace(-8,8,50)
yneu = G/(1+numpy.exp(-k*G*xneu)*(G/f0-1))
xr = x
yr = G/(1+numpy.exp(-k*G*xr)*(G/f0-1))
residuen = []
for i in range(len(x)): residuen +=[ [x[i]+8, x[i]+8],[y[i]*10, yr[i]*10], 'g-']
fig = plt.figure(figsize=(4.2, 3.2))
y0 = plt.plot(*residuen[:-3], color='#60c060', linewidth=1.5)
y0, = plt.plot(*residuen[-3:],label='Residuum', color='#60c060', linewidth=1.5)
y2, = plt.plot(xneu+8,yneu*10,'r-',label='Modellfunktion')
plt.setp(y2, linewidth=1.5)
y1, = plt.plot(x+8,y*10,'o',label='Messpunkte')
plt.xlabel('x')
plt.ylabel('y')
order = y1,y2,y0
plt.legend(order,[p.get_label() for p in order],frameon=True, loc='lower right')
plt.gca().xaxis.set_major_locator(ticker.MultipleLocator(2))
plt.grid(True, alpha=0.7)
plt.tight_layout()
plt.savefig('MDKQ1.svg')
|
Licensing
[edit]This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication. | |
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.
http://creativecommons.org/publicdomain/zero/1.0/deed.enCC0Creative Commons Zero, Public Domain Dedicationfalsefalse |
File history
Click on a date/time to view the file as it appeared at that time.
Date/Time | Thumbnail | Dimensions | User | Comment | |
---|---|---|---|---|---|
current | 12:05, 23 May 2021 | 378 × 288 (36 KB) | Physikinger (talk | contribs) | New Matplotlib version | |
19:01, 2 February 2011 | 405 × 315 (45 KB) | PhysikingerC (talk | contribs) | Einheitlicher Text | ||
18:38, 2 February 2011 | 405 × 315 (60 KB) | PhysikingerC (talk | contribs) | Text als Text, nicht als Kurven | ||
22:27, 1 February 2011 | 408 × 274 (46 KB) | PhysikingerC (talk | contribs) | {{Information |Description ={{de|1=Fit einer Logistischen Funktion an Messdaten}} |Source ={{own}} |Author =Christian Schirm |Date =2011-02-01 |Permission = |other_versions = }} |
You cannot overwrite this file.
File usage on Commons
The following page uses this file:
File usage on other wikis
The following other wikis use this file:
- Usage on ar.wikipedia.org
- Usage on de.wikipedia.org
- Usage on www.wikidata.org
Metadata
This file contains additional information such as Exif metadata which may have been added by the digital camera, scanner, or software program used to create or digitize it. If the file has been modified from its original state, some details such as the timestamp may not fully reflect those of the original file. The timestamp is only as accurate as the clock in the camera, and it may be completely wrong.
Width | 302.4pt |
---|---|
Height | 230.4pt |