analytisch funktioniert noch nicht

This commit is contained in:
2025-11-04 14:18:17 +01:00
parent 610ea3dc28
commit 1c56b089f2
3 changed files with 92 additions and 31 deletions

View File

@@ -1,4 +1,6 @@
import numpy as np
from scipy.special import factorial as fact
from math import comb
J = np.array([
[2, 3, 0],
@@ -21,4 +23,7 @@ res_row = xi[None, :] - xi[None, :] @ J
print("Spaltenvektor:")
print(res_col[0,0])
print("Zeilenvektor:")
print(res_row)
print(res_row)
t = 5
l = 2
print(fact(t+1-l) / (fact(t+1-l) * fact(l-1)), comb(l-1, t+1-l))