Skip to content

Instantly share code, notes, and snippets.

View MindGeek's full-sized avatar

Mg Guan MindGeek

View GitHub Profile
@yang-zhang
yang-zhang / cross-entropy.ipynb
Last active March 18, 2024 06:05
Cross entropy implementation in pytorch
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@chaosmail
chaosmail / python-pid_controller
Last active September 26, 2022 13:13
Simple PID Controller
def pid_controller(y, yc, h=1, Ti=1, Td=1, Kp=1, u0=0, e0=0)
"""Calculate System Input using a PID Controller
Arguments:
y .. Measured Output of the System
yc .. Desired Output of the System
h .. Sampling Time
Kp .. Controller Gain Constant
Ti .. Controller Integration Constant
Td .. Controller Derivation Constant