From 801e4c8befc7126591dbbe1eebfdcb0750e47b0d Mon Sep 17 00:00:00 2001 From: CasBex <123587431+CasBex@users.noreply.github.com> Date: Wed, 29 Jan 2025 15:39:40 +0100 Subject: [PATCH] Extend docstring --- lib/ControlSystemsBase/src/types/StateSpace.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ControlSystemsBase/src/types/StateSpace.jl b/lib/ControlSystemsBase/src/types/StateSpace.jl index ee3c89a5f..2cd66eb09 100644 --- a/lib/ControlSystemsBase/src/types/StateSpace.jl +++ b/lib/ControlSystemsBase/src/types/StateSpace.jl @@ -214,7 +214,7 @@ HeteroStateSpace(sys::LTISystem) = convert(HeteroStateSpace, sys) """ A, B, C, D = ssdata(sys) -A destructor that outputs the statespace matrices. +Outputs the statespace matrices of sys. The matrices are not copies: no new memory is allocated, but modifying the matrices in-place will change the behavior of sys. """ ssdata(sys) = sys.A, sys.B, sys.C, sys.D