Skip to content

Control package for GNU Octave including system analysis and control synthesis

License

Notifications You must be signed in to change notification settings

gnu-octave/pkg-control

Repository files navigation

Octave control package

This is the official repository for the control package for GNU Octave.

About

The control package is a collection of functions for control systems design and analysis.

As of 24.03.2023, the developemnt of the control package was moved from SourceForge and Mercurial to GitHub and Git. Links related to the control package

Used Library SLICOT

Control uses some routines of the SLICOT-Reference library (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.

The SLICOT files are available under the BSD 3-Clause License which can be found

  • in the file src/slicot-src/LICENSE (together with README files) in the package archive control-x.y.z.tar.gz,
  • in the file doc/SLICOT/LICENSE (together with README files) in the package installation directory, or
  • in the SLICOT-Reference repository.

Installing the control package

Installing released package version

The easiest way to install the newest control package is to type

pkg install -forge control

Alternatively, you may download the package archive file control-x.y.z.tar.gz of one of the releases and install it by typing

pkg install control-x.y.z.tar.gz

Creating and installing package archives

You 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:

  • make dist
    Create the package archive file in the directory target which can be installed in Octave afterwards
  • make install
    Install the package
  • make help
    Show all targets for make