@@ -18,8 +18,8 @@ See [`lqr`](@ref) for more details.
1818Uses `MatrixEquations.arec`. For keyword arguments, see the docstring of `ControlSystemsBase.MatrixEquations.arec`,
1919note that they define the input arguments in a different order.
2020"""
21- function are (:: ContinuousType , A:: AbstractMatrix , B, Q, R; kwargs... )
22- arec (A, B, R, Q; kwargs... )[1 ]
21+ function are (:: ContinuousType , A:: AbstractMatrix , B, Q, R, args ... ; kwargs... )
22+ arec (A, B, R, Q, args ... ; kwargs... )[1 ]
2323end
2424
2525"""
@@ -34,8 +34,8 @@ See [`lqr`](@ref) for more details.
3434Uses `MatrixEquations.ared`. For keyword arguments, see the docstring of `ControlSystemsBase.MatrixEquations.ared`,
3535note that they define the input arguments in a different order.
3636"""
37- function are (:: DiscreteType , A:: AbstractMatrix , B, Q, R; kwargs... )
38- ared (A, B, R, Q; kwargs... )[1 ]
37+ function are (:: DiscreteType , A:: AbstractMatrix , B, Q, R, args ... ; kwargs... )
38+ ared (A, B, R, Q, args ... ; kwargs... )[1 ]
3939end
4040
4141are (t:: TimeEvolType , A:: Number , B:: Number , Q:: Number , R:: Number ) = are (t, fill (A,1 ,1 ),fill (B,1 ,1 ),fill (Q,1 ,1 ),fill (R,1 ,1 ))
0 commit comments