Feedback on the "Equations reference" page

I was looking at https://racechrono.com/support/equations and found what I believe are typos:
"lowPass(source, limit)
Returns source when source <= limit, otherwise NaN.
lowPass(100.0, 99.9) = NaN
lowPass(99.9, 99.9) = 99.9
lowPass(99.8, 99.9) = 99.9 <<<< HERE
---
highPass(source, limit)
Returns source when source >= limit, otherwise NaN.
highPass(100.0, 99.9) = 99.9 <<<< HERE
highPass(99.9, 99.9) = 99.9
highPass(99.8, 99.9) = NaN"

Either the descriptions for these functions are not correct, or the examples given?

There are also a few functions marked as "This function is coming to v7.1.".
Perhaps those notes can now be removed?

Comments

Sign In or Register to comment.