We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b03e67 commit 60e07b9Copy full SHA for 60e07b9
README.md
@@ -78,8 +78,9 @@ assert_eq!(output.d, -10.0);
78
There are several different formulations of PID controllers. This library
79
uses the independent form:
80
81
-&space;=&space;&space;K_p&space;\cdot&space;e(t)&space;+&space;K_i&space;\cdot&space;\int{e(t)dt}&space;-&space;K_d&space;\cdot&space;\frac{dP(t)}{dt})
+```math
+C(t) = K_p \cdot e(t) + K_i \cdot \int{e(t)dt} - K_d \cdot \frac{dP(t)}{dt}
83
+```
84
85
where:
86
- C(t) = control output, the output to the actuator.
0 commit comments