Die Suche ergab 1 Treffer

von littleg
Mittwoch 26. Februar 2014, 15:27
Forum: Allgemeine Fragen
Thema: scipy Umsetzung einer math. Formel in Code
Antworten: 2
Zugriffe: 905

scipy Umsetzung einer math. Formel in Code

Hallo,

ich versuche einige mathematische Formeln in Python Code umzusetzen.
Leider bekomme ich eine Reihe Fehlermeldungen ...


import matplotlib.pyplot as plt
import numpy as np
from scipy.optimize import curve_fit
from scipy.integrate import quad
n = 3
x = np.array([2.1,2.2,2.3,2.4])
y = np ...