8000 Update to SLICOT v5.9 by bnavigator · Pull Request #231 · python-control/Slycot · GitHub
[go: up one dir, main page]

Skip to content

Update to SLICOT v5.9 #231

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

8000
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update CMakeLists.txt and init with new SLICOT routine count
  • Loading branch information
bnavigator committed Mar 5, 2024
commit c6e6b7c18980b996d93b4078500b115ba37017ef
12 changes: 12 additions & 0 deletions slycot/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ src/SLICOT-Reference/src/AB13DD.f
src/SLICOT-Reference/src/AB13DX.f
src/SLICOT-Reference/src/AB13ED.f
src/SLICOT-Reference/src/AB13FD.f
src/SLICOT-Reference/src/AB13HD.f
src/SLICOT-Reference/src/AB13ID.f
src/SLICOT-Reference/src/AB13MD.f
src/SLICOT-Reference/src/AB8NXZ.f
Expand Down Expand Up @@ -105,6 +106,8 @@ src/SLICOT-Reference/src/MA01AD.f
src/SLICOT-Reference/src/MA01BD.f
src/SLICOT-Reference/src/MA01BZ.f
src/SLICOT-Reference/src/MA01CD.f
src/SLICOT-Reference/src/MA01DD.f
src/SLICOT-Reference/src/MA01DZ.f
src/SLICOT-Reference/src/MA02AD.f
src/SLICOT-Reference/src/MA02AZ.f
src/SLICOT-Reference/src/MA02BD.f
Expand All @@ -131,6 +134,8 @@ src/SLICOT-Reference/src/MA02OD.f
src/SLICOT-Reference/src/MA02OZ.f
src/SLICOT-Reference/src/MA02PD.f
src/SLICOT-Reference/src/MA02PZ.f
src/SLICOT-Reference/src/MA02RD.f
src/SLICOT-Reference/src/MA02SD.f
src/SLICOT-Reference/src/MB01KD.f
src/SLICOT-Reference/src/MB01LD.f
src/SLICOT-Reference/src/MB01MD.f
Expand Down Expand Up @@ -322,7 +327,13 @@ src/SLICOT-Reference/src/MB04QF.f
src/SLICOT-Reference/src/MB04QS.f
src/SLICOT-Reference/src/MB04QU.f
src/SLICOT-Reference/src/MB04RB.f
src/SLICOT-Reference/src/MB04RD.f
src/SLICOT-Reference/src/MB04RS.f
src/SLICOT-Reference/src/MB04RT.f
src/SLICOT-Reference/src/MB04RU.f
src/SLICOT-Reference/src/MB04RV.f
src/SLICOT-Reference/src/MB04RW.f
src/SLICOT-Reference/src/MB04RZ.f
src/SLICOT-Reference/src/MB04SU.f
src/SLICOT-Reference/src/MB04TB.f
src/SLICOT-Reference/src/MB04TS.f
Expand Down Expand Up @@ -613,6 +624,7 @@ src/SLICOT-Reference/src/UD01MD.f
src/SLICOT-Reference/src/UD01MZ.f
src/SLICOT-Reference/src/UD01ND.f
src/SLICOT-Reference/src/UE01MD.f
src/SLICOT-Reference/src/zelctg.f

src/SLICOT-Reference/src/delctg.f
src/SLICOT-Reference/src/select.f
Expand Down
4 changes: 2 additions & 2 deletions slycot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# U : Utility Routines


# Analysis routines (18/60 wrapped)
# Analysis routines (18/61 wrapped)
from .analysis import (ab01nd,
ab04md,
ab05md, ab05nd,
Expand All @@ -47,7 +47,7 @@

# Identification routines (0/15 wrapped)

# Mathematical routines (8/281 wrapped)
# Mathematical routines (8/291 wrapped)
from .math import (mb02ed, mb03rd, mb03vd, mb03vy, mb03wd,
mb05md, mb05nd,
mc01td)
Expand Down
0