Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lqg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ function ControlSystemsBase.observer_controller(l::LQGProblem, L::AbstractMatrix
Cc = L
Dc = 0
iszero(l.D11) || error("Nonzero D11 not supported")
iszero(l.D22) || error("Nonzero D22 not supported. The _transformP2Pbar is not used for LQG, but perhaps shpuld be?")
iszero(l.D22) || error("Nonzero D22 not supported. The _transformP2Pbar is not used for LQG, but perhaps should be?")
end
# do we need some way to specify which non-controllable inputs are measurable? No, because they will automatically appear in the measured outputs :)
Gc = ss(Ac, Bc, Cc, Dc, l.timeevol)
Expand Down
Loading