8000 Bugfix ab13bd by KybernetikJo · Pull Request #200 · python-control/Slycot · GitHub
[go: up one dir, main page]

Skip to content

Bugfix ab13bd #200

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 4 commits into from
Aug 24, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files. < 8000 /div>
Loading
Diff view
Diff view
Next Next commit
Fix datatype and value check of parameter (m,p)
  • Loading branch information
KybernetikJo committed Aug 23, 2023
commit 75b1fdf13b68fba45ef7b2d2c3bdf991d2be4f26
4 changes: 2 additions & 2 deletions slycot/src/analysis.pyf
Original file line number Diff line number Diff line change
Expand Up @@ -305,8 +305,8 @@ function ab13bd(dico,jobn,n,m,p,a,lda,b,ldb,c,ldc,d,ldd,nq,tol,dwork,ldwork,iwar
character intent(in) :: dico
character intent(in) :: jobn
integer check(n>=0) :: n
integer check(n>=0) :: m
integer check(n>=0) :: p
integer check(m>=0) :: m
integer check(p>=0) :: p
double precision dimension(n,n),depend(n) :: a
integer intent(hide),depend(a) :: lda = shape(a,0)
double precision dimension(n,m),depend(n,m) :: b
Expand Down
0