mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-16 05:55:12 +00:00
[PR #350] Add PID (Proportional Integral Derivative) Controller #695
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/TheAlgorithms/C/pull/350
State: closed
Merged: Yes
This PR adds the PID Controller - a common (and likely most ubiquitous) linear control systems algorithm. For now, since there are no other control algorithms present in the repo, I have added it into the
miscfolder. Apologies if this is slightly out of scope of your definition of algorithms, but I figured if the client server socket example was in scope, then this likely would be too.More information about the PID Controller can be found here: https://en.wikipedia.org/wiki/PID_controller
Thanks, Ciaran