We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4127f5 commit d448c2dCopy full SHA for d448c2d
lib/ControlSystemsBase/src/matrix_comps.jl
@@ -729,7 +729,7 @@ end
729
"""
730
find_similarity_transform(sys1, sys2, method = :obsv)
731
732
-Find T such that `ControlSystemsBase.similarity_transform(sys1, T) == sys2`
+Find T such that `similarity_transform(sys1, T) == sys2`
733
734
Ref: Minimal state-space realization in linear system theory: an overview, B. De Schutter
735
@@ -740,7 +740,7 @@ julia> T = randn(3,3);
740
741
julia> sys1 = ssrand(1,1,3);
742
743
-julia> sys2 = ControlSystemsBase.similarity_transform(sys1, T);
+julia> sys2 = similarity_transform(sys1, T);
744
745
julia> T2 = find_similarity_transform(sys1, sys2);
746
0 commit comments