Pythonfiles
This commit is contained in:
14
Datumsfestlegung.py
Normal file
14
Datumsfestlegung.py
Normal file
@@ -0,0 +1,14 @@
|
||||
import sympy as sp
|
||||
|
||||
def auswahlmatrix_E(u: int, aktive_unbekannte_indices: Iterable[int]) -> sp.Matrix:
|
||||
E = sp.zeros(u, u)
|
||||
for idx in aktive_unbekannte_indices:
|
||||
E[int(idx), int(idx)] = 1
|
||||
return E
|
||||
|
||||
def raenderungsmatric_G():
|
||||
|
||||
|
||||
def teilspurminimierung_Gi(G: sp.Matrix, E: sp.Matrix) -> sp.Matrix:
|
||||
Gi = E * G
|
||||
return Gi
|
||||
Reference in New Issue
Block a user