Pythonfiles

This commit is contained in:
2025-12-16 14:18:31 +01:00
parent 5f23c68d84
commit 656c535208

View File

@@ -2,7 +2,7 @@ from Stochastisches_Modell import StochastischesModell
def ausgleichung(A, dl, stoch_modell: StochastischesModell): def ausgleichung(A, dl, stoch_modell: StochastischesModell):
Q_ll, P = stoch_modell.berechne_Qll_P() #Kofaktormatrix und P-Matrix Q_ll, P = stoch_modell.berechne_Qll_P() #Kofaktormatrix und P-Matrix
N = A.T * P * A #Normalgleichungsmatrix N N = A.T * P * A #Normalgleichungsmatrix N
Q_xx = N.inv() #Kofaktormatrix der Unbekannten Qxx Q_xx = N.inv() #Kofaktormatrix der Unbekannten Qxx
n = A.T * P * dl #Absolutgliedvektor n n = A.T * P * dl #Absolutgliedvektor n