mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-27 02:01:42 +00:00
Fixed typo in LinearDigitalFilter documentation (#62)
This commit is contained in:
committed by
Peter Johnson
parent
e6f6d24780
commit
b5b2f0c7d8
@@ -19,8 +19,8 @@
|
||||
* used types of filters.
|
||||
*
|
||||
* Filters are of the form:
|
||||
* y[n] = (b0*x[n] + b1*x[n-1] + ... + bP*x[n-P) - (a0*y[n-1] + a2*y[n-2] + ...
|
||||
* + aQ*y[n-Q])
|
||||
* y[n] = (b0*x[n] + b1*x[n-1] + ... + bP*x[n-P]) - (a0*y[n-1] + a2*y[n-2] +
|
||||
* ... + aQ*y[n-Q])
|
||||
*
|
||||
* Where:
|
||||
* y[n] is the output at time "n"
|
||||
|
||||
Reference in New Issue
Block a user