Skip to content

Commit 30f1c96

Browse files
committed
Wrong obsdim
1 parent 8952e18 commit 30f1c96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/transform/transform.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ struct IdentityTransform <: Transform end
2121

2222
apply(t::IdentityTransform, x; obsdim::Int = defaultobs) = x
2323

24-
apply(t::Transform, x::ColVecs; obsdim::Int = defaultobs) = ColVecs(apply(t, x.X, obsdim = 1))
24+
apply(t::Transform, x::ColVecs; obsdim::Int = defaultobs) = ColVecs(apply(t, x.X, obsdim = 2))
2525

2626
### TODO Maybe defining adjoints could help but so far it's not working
2727

0 commit comments

Comments
 (0)