Ziel Python Library Master (31) Adipy

[Bibliotheksbeschreibung]

Kann unterschieden werden

[Vorbereitung]

pip install numpy Führen Sie den obigen Befehl im Voraus aus  pip install matplotlib Sie benötigen auch matplotlib, wenn Sie Diagramme zeichnen

【Programm】

adipy1.py


# -*- coding: utf-8 -*-

from adipy import ad, sin, adn

#Erstellung von Anzeigenobjekten
x = ad(1.5)

#Ersetzen Sie y durch x im Quadrat
y = x**2
print y
# ad(2.25, array([ 3.]))
# array([ 3.])"3" ist der Wert, der durch einmaliges Differenzieren von y und Ersetzen von x erhalten wird

# dy(1)/dx
print y.d(1)
# 3.0

z = x*sin(x**2)
print z
# ad(1.1671097953318819, array([-2.04870811]))

# dy(1)/dx
print z.d(1)
# -2.04870810536

#adn Objekterstellung
#Das zweite Argument 4 wird bis zur vierfachen Differenzierung berechnet
x = adn(1.5, 4)

y = x**2
print y
# ad(2.25, array([ 3.,  2.,  0., -0.]))

# dy(2)/dx
print y.d(2)
# 2.0

z = x*sin(x**2)
print z
# ad(1.1671097953318819, array([  -2.04870811,  -16.15755076,  -20.34396265,  194.11618384]))

# dy(4)/dx
print z.d(4)
# 194.116183837

adipy2.py


# -*- coding: utf-8 -*-

from adipy import adn, sin, taylorfunc
import matplotlib.pyplot as plt
import numpy as np

#adn Objekterstellung
xAD = [adn(1.5, i) for i in xrange(1, 7)]

def z(x):
    return x*sin(x**2)

#Stellen Sie den x-Achsenbereich des Diagramms ein
x = np.linspace(0.75, 2.25)
#Beschriften und zeichnen Sie die ursprüngliche Funktion als tatsächliche Funktion
plt.plot(x, z(x), label='Actual Function')


for i in xrange(len(xAD)):
    #Verwenden Sie das Taylor-Polynom
    fz = taylorfunc(z(xAD[i]), at=xAD[i].nom)
    plt.plot(x, fz(x), label='Order %d Taylor'%(i+1))

#Stellen Sie die Position der Funktionsbezeichnung ein
plt.legend(loc=0)
plt.show()
graph.png

[Referenzseite]

pypi  github

Recommended Posts

Ziel Python Library Master (31) Adipy
Ziel Python Library Master (48) Autopep8
Ziel Python Library Master (36) json2html
Ziel Python-Master (49) psidialogs
Ziel Python Library Master (26) easyxml
Ziel Python Library Master (29) table_printer
Zielen Sie auf die Namespaces des Python Library Master (55)
Ziel Python Library Master (46) Browserplus
Ziel Python Library Master (30) Chronyk
Ziel Python Library Master (3) Arbeitskalender
Ziel Python Library Master (37) Slimurl
Ziel Python Library Master (44) Pynetviz
Ziel Python Library Master (8) Rolex
Ziel Python Library Master (52) Marktime
Ziel Python Library Master (7) Numparser
Ziel Python Library Master (21) hy
Richten Sie die Anforderungen des Python Library Master (18) aus
Ziel Python Library Master (13) easydev
Ziel Python Library Master (20) Pyyaml
Zielen Sie gleichzeitig auf den Python-Bibliotheksmaster (34)
Ziel ist die Wortsegmentierung des Python Library Master (40)
Ziel Python Library Master (43) cpmoptimize
Ziel Python Library Master (68) Pazudorasolver
Ziel Python Library Master (11) nlist
Ziel Python Library Master (38) beautiful_print
Ziel Python Library Master (65) Geopy
Ziel Python Library Master (2) Vincent
Zielen Sie auf das Logbuch des Python Library Master (59)
Ziel Python Library Master (51) Pyautogui
Ziel Python Library Master (10) Timeit
Ziel Python Python Master (0) Links
Ziel Python Library Master (66) youtube-dl
Ziel Python Library Master (53) Psutil
Ziel Python Library Master (22) htmltag
Ziel Python Library Master (67) httpie
Ziel Python Library Master (45) xlsxwriter
Ziel Python Library Master (9) WebHelpers
Ziel Python Library Master (56) Colorthief
Ziel Python Library Master (61) verschachtelte Suche
Ziel Python Range Master (17) RangeParser
Ziel Python Library Master (47) Deckor
Ziel Python Library Master (25) bestellte Menge
Ziel Python Python Library Master (62) Blicke
Ziel Python Library Master (12) Excel
Ziel Python Library Master (24) Combi
Ziel Python Library Master (63) easygui
Ziel Python Library Master (19) Riemann
Ziel Python Library Master (39) goless
Ziel Python Library Master (54) tqdm
Zielen Sie auf das Byteplay von Python Library Master (16)
Ziel Python Python Master (23) memory_utils
Ziel Python Library Master (27) Benchit
Ziel Python Library Master (35) Pywildcard
Ziel Python Library Master (14) Pyknon
Ziel Python Library Master (15) Brute
Ziel Python Library Master (57) Browsergui
Ziel Python-Bibliotheksmaster (1) da-vinci
Ziel Python Library Master (33) menschlich freundlich
Ziel Python-Bibliotheksmeister (4) Ascii Py
Ziel Python Library Master (28) verbale Ausdrücke
Zielen Sie auf die Terminal-Tabellen des Python Library Library (5)