{"id":40519028,"url":"https://github.com/gnu-octave/pkg-control","last_synced_at":"2026-01-20T21:01:53.498Z","repository":{"id":160640067,"uuid":"618143596","full_name":"gnu-octave/pkg-control","owner":"gnu-octave","description":"Control package for GNU Octave including system analysis and  control synthesis","archived":false,"fork":false,"pushed_at":"2026-01-20T06:01:53.000Z","size":36097,"stargazers_count":26,"open_issues_count":0,"forks_count":8,"subscribers_count":7,"default_branch":"main","last_synced_at":"2026-01-20T14:24:08.992Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://gnu-octave.github.io/pkg-control/","language":"MATLAB","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gnu-octave.png","metadata":{"files":{"readme":"README.md","changelog":"NEWS","contributing":"CONTRIBUTING.md","funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-03-23T20:58:58.000Z","updated_at":"2026-01-19T22:12:11.000Z","dependencies_parsed_at":"2024-11-10T23:19:17.604Z","dependency_job_id":"1c3c09d9-9188-4092-bc64-ac8452001ebd","html_url":"https://github.com/gnu-octave/pkg-control","commit_stats":null,"previous_names":[],"tags_count":34,"template":false,"template_full_name":null,"purl":"pkg:github/gnu-octave/pkg-control","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnu-octave%2Fpkg-control","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnu-octave%2Fpkg-control/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnu-octave%2Fpkg-control/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnu-octave%2Fpkg-control/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gnu-octave","download_url":"https://codeload.github.com/gnu-octave/pkg-control/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gnu-octave%2Fpkg-control/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28613659,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T18:56:40.769Z","status":"ssl_error","status_checked_at":"2026-01-20T18:54:26.653Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-20T21:00:34.180Z","updated_at":"2026-01-20T21:01:53.493Z","avatar_url":"https://github.com/gnu-octave.png","language":"MATLAB","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Octave control package\n\nThis is the official repository for the control package for GNU Octave.\n\n## About\n\nThe **control** package is a collection of functions for control systems design and analysis. \n\nAs of 24.03.2023, the developemnt of the **control** package was moved from [SourceForge](https://sourceforge.net/p/octave/control/ci/default/tree/) and [Mercurial](https://en.wikipedia.org/wiki/Mercurial) to [GitHub](https://github.com/gnu-octave/pkg-control) and [Git](https://en.wikipedia.org/wiki/Git). Links related to the control package\n\n- [License and copyright information](https://github.com/gnu-octave/pkg-control/blob/main/COPYING)\n- [Releases](https://github.com/gnu-octave/pkg-control/releases)\n- [Documentation](https://gnu-octave.github.io/pkg-control)\n\n## Used Library SLICOT\n\nControl uses some routines of the [SLICOT-Reference library](https://github.com/SLICOT/SLICOT-Reference) (Copyright (c) 2020, SLICOT). The sources of the used routines are included in the released control package archive `control-x.y.z.tar.gz` in the directory `src/slicot-src` and are compiled for the target system while installing the control package for Octave.\n\nThe SLICOT files are available under the *BSD 3-Clause License* which can be found\n\n- in the file `src/slicot-src/LICENSE` (together with README files) in the package archive `control-x.y.z.tar.gz`,\n- in the file `doc/SLICOT/LICENSE` (together with README files) in the package installation directory, or\n- in the [SLICOT-Reference repository](https://github.com/SLICOT/SLICOT-Reference/blob/main/LICENSE).\n\n\n## Installing the control package\n\n### Installing released package version\n\nThe easiest way to install the newest control package is to type\n\n  `pkg install control`\n\nFor installing a certain version x.y.z of the control package, you may\n\n- download the package archive file `control-x.y.z.tar.gz` of one of the [releases](https://github.com/gnu-octave/pkg-control/releases) and install it by typing\n  `pkg install control-x.y.z.tar.gz` or\n- directly issue the command `pkg install \"https://github.com/gnu-octave/pkg-control/releases/download/control-x.y.z/control-x.y.z.tar.gz\"`\n\n### Creating and installing package archives from the sources\n\nYou can also clone this repository (using the option `--recurse-submodules` since SLICOT is included as git submodule) and build the package archive file by yourself. For this, you can use the following commands:\n\n- `make dist`\u003cbr\u003e\n  Create the package archive file in the directory `target` which can be installed in Octave afterwards\n- `make install`\u003cbr\u003e\n  Install the package\n- `make help`\u003cbr\u003e\n  Show all targets for `make`\n\n## Contributing to the control package\n\nInformation on how to contribute to the control package can be found in [this document](CONTRIBUTING.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgnu-octave%2Fpkg-control","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgnu-octave%2Fpkg-control","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgnu-octave%2Fpkg-control/lists"}