
Dieses Modul ist numerische Analyse, Bereich der Mathematik und Informatik, die Algorithmen zum Erhalten numerischer Lösungen für Probleme mit kontinuierlichen Variablen erstellt, analysiert und implementiert. Solche Probleme treten in den Naturwissenschaften, Sozialwissenschaften, Ingenieurwesen, Medizin und Wirtschaft auf.
Pypi, makellos
PIP Installieren Sie dieses Modul von Ihrer Konsole aus
pip install numerical-analysis-aman
Importieren Sie dieses Modul in Ihren Arbeitsbereich
# Import In Python File
from Numerical_Analysis_Aman import < Module >
# =>> _MODULES_
# -> Numerical_Algebra
# -> Numerical_Analysis
# -> Numerical_Integration
# -> Numerical_Interpolation
# Import all
from Numerical_Analysis_Aman import * Dies enthält derzeit 4 Teile, die Sie von unten untersuchen und eine Vorstellung von allen Methoden und Funktionen haben können
Dieser Teil enthält Interpolation.
x=Numerical_Analysis_Aman.Numerical_Integration(lower,upper,function)
x.Trapazoid(itration=2) Trapazoid -Methodex.Simpson_13(itration=2) SIMPSON 1/3x.Simpson_38(itration=2) SIMPSON 3/8 Dieser Teil enthält die Integrationsmethode mit drei Methoden
x = Numerical_Analysis_Aman.Numerical_Analysis(x_0,y_0,x_given,gap,function)
x.Eular( itration = 4 ) eularx.EularModified( itration = 4 ) eularModifiedx.RungaKutta( itration = 4 ) Rurngakutta Dieser Teil enthält eine Analysemethode mit vier Methoden
x=Numerical_Analysis_Aman.Numerical_Interpolation(x_list,y_list,find_value)
x.Langrangian() Langrangianx.Newton_Divided() Newton Divided Unterschiedex.Newton_Forward() Newton Forwardx.Newton_Backward() Newton rückwärts Dieser Teil enthält eine Analysemethode mit drei Methoden
x=Numerical_Analysis_Aman.Numerical_Algebra(list_1,list_2,list_3)
x.Jacobi(itration=6) Jacobix.Gauss_Seidel(itration=6) Gauß Seidelx.Gauss_Seidel_4(list_4,itration=6) Gauß Seidel für 4 Variable Beispiel und Beispiel für Eingaben und wie man daran arbeitet
import Numerical_Analysis_Aman as na
x = na . Numerical_Integration ( 2 , 7 , "1/(5*x+3)" )
y = na . Numerical_Analysis ( 0 , 1 , 0.2 , 0.1 , "((x**3)*(math.e**(-2*x))-(2*y))" )
z = na . Numerical_Interpolation ([ 1891 , 1901 , 1911 , 1921 , 1931 ],[ 46 , 66 , 81 , 93 , 101 ], 1925 )
w = na . Numerical_Algebra ([ 10 , 1 , - 1 , 11.19 ],[ 1 , 10 , 1 , 28.08 ],[ - 1 , 1 , 10 , 35.61 ])
# All of them are Initiated at once you can use them individualy as per requirement
# default Itrations - 2
print ( x . Trapazoid ( ))
print ( x . Simpson_13 ( ))
print ( x . Simpson_38 ( ))
# default Itrations - 4
print ( y . Eular ( ))
print ( y . EularModified ( ))
print ( y . RungaKutta ( ))
print ( z . Langrangian ( ))
print ( z . Newton_Divided ( ))
print ( z . Newton_Forward ( ))
print ( z . Newton_Backward ( ))
# default Itrations - 6
print ( w . Jacobi ( ))
print ( w . Gauss_Seidel ( ))
# needed Additional list for 4 variable
# print(w.Gauss_Seidel_4(list_4)) Wenn eine Ausgabe mich per E -Mail an [email protected] kontaktieren
Dieses Repository ist unter der MIT -Lizenz lizenziert. Weitere Informationen finden Sie in Lizenz.