Skip to content

Commit ce07d67

Browse files
committed
New mrCOSTS/COSTS implementation with tests and tutorial
NOTE: These changes were hard reset from my original development branches for a clean commmit history.
1 parent cbd7c92 commit ce07d67

13 files changed

+6151
-0
lines changed

pydmd/bopdmd.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1003,6 +1003,10 @@ def svd_rank(self):
10031003
"""
10041004
return self._svd_rank
10051005

1006+
@svd_rank.setter
1007+
def svd_rank(self, value):
1008+
self._svd_rank = value
1009+
10061010
@property
10071011
def compute_A(self):
10081012
"""
@@ -1033,6 +1037,10 @@ def init_alpha(self):
10331037
raise RuntimeError(msg)
10341038
return self._init_alpha
10351039

1040+
@init_alpha.setter
1041+
def init_alpha(self, value):
1042+
self._init_alpha = value
1043+
10361044
@property
10371045
def proj_basis(self):
10381046
"""

0 commit comments

Comments
 (0)