Skip to content

Commit 394c51a

Browse files
committed
rlocus: fix regression corresponding to colors,
DESCRIOTION: fixes regression from new tags for describe
1 parent f74e5d0 commit 394c51a

6 files changed

Lines changed: 5 additions & 6 deletions

File tree

DESCRIPTION

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,5 @@ Description: Control package for GNU Octave including system analysis and
99
Depends: octave (>= 4.0.0)
1010
Autoload: no
1111
License: GPLv3-or-later, BSD 3-Clause License (SLICOT files)
12-
Url: https://gnu-octave.github.io/packages/control
13-
Repository: https://github.com/gnu-octave/pkg-control
12+
Url: https://github.com/gnu-octave/pkg-control
1413
Tracker: https://github.com/gnu-octave/pkg-control/issues

docs/assets/sgrid_101.png

-32 Bytes
Loading

docs/assets/sgrid_301.png

-41 Bytes
Loading

docs/cfconred.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ <h3 class="d-inline-block mr-2">
502502
<dt><u>Function File:</u> [<var>Kr</var>, <var>info</var>] = <b>cfconred</b><i> (<var>G</var>, <var>F</var>, <var>L</var>, <var>ncr</var>, <var>opt</var>, &hellip;)</i></dt>
503503
</dl>
504504

505-
<p> Reduction of state-feedback-observer based controller by coprime factorization (CF).
505+
<p> Reduction of state-feedback-observer based controller by coprime factorization (CF).
506506
Given a plant <var>G</var>, state feedback gain <var>F</var> and full observer gain <var>L</var>,
507507
determine a reduced order controller <var>Kr</var>.
508508
</p>

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
</div>
8989
<div class="col-sm-9 col-md-10">
9090
<h3 class="d-inline-block mr-2">control</h3>
91-
<b>4.1.0+&nbsp;XXXX-XX-XX</b>
91+
<b>4.1.1&nbsp;2025-02-09</b>
9292
<p class="indent">
9393
Control package for GNU Octave including system analysis and control synthesis. The package uses routines of the SLICOT-Reference library.
9494
</p>

inst/rlocus.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,10 +292,10 @@
292292
args{3,kk} = "o;zeros;";
293293
endif
294294
hplt = plot (args{:});
295-
set (hplt(kk--), {"linewidth", "markersize", "color"}, {2, ms, [0, 0.75, 0]});
296295
if (! isempty (rlzer))
297-
set (hplt(kk--), {"linewidth", "markersize", "color"}, {2, ms, [0.75, 0, 0]});
296+
set (hplt(kk--), {"linewidth", "markersize", "color"}, {2, ms, [0, 0.75, 0]});
298297
endif
298+
set (hplt(kk--), {"linewidth", "markersize", "color"}, {2, ms, [0.75, 0, 0]});
299299
for ii = 1:rows(rlpol)
300300
set (hplt(kk--), "linewidth", 2);
301301
endfor

0 commit comments

Comments
 (0)