Skip to content

Commit 91da413

Browse files
jessegrabowskiricardoV94
authored andcommitted
Change order of cycle states to Cos then Sin
1 parent 17bbd99 commit 91da413

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc_experimental/statespace/models/structural.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1499,7 +1499,7 @@ def make_symbolic_graph(self) -> None:
14991499
self.ssm["state_cov", :, :] = pt.eye(self.k_posdef) * sigma_cycle**2
15001500

15011501
def populate_component_properties(self):
1502-
self.state_names = [f"{self.name}_{f}" for f in ["Sin", "Cos"]]
1502+
self.state_names = [f"{self.name}_{f}" for f in ["Cos", "Sin"]]
15031503
self.param_names = [f"{self.name}"]
15041504

15051505
self.param_info = {

0 commit comments

Comments
 (0)