analytisch funktioniert noch nicht
This commit is contained in:
7
test.py
7
test.py
@@ -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))
|
||||
Reference in New Issue
Block a user