Skip to content

Commit

Permalink
doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
narmstro2020 committed Apr 9, 2024
1 parent c1d8354 commit 11e0e19
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ class LinearSystemSim {
* any does, the relative magnitudes of the input will be maintained.
*
* @param maxInput The input vector.
* @return The normalized input.
*/
void ClampInput(double maxInput) {
m_u = frc::DesaturateInputVector<Inputs>(m_u, maxInput);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ protected Matrix<States, N1> updateX(
* relative magnitudes of the input will be maintained.
*
* @param maxInput maximum value for input vector.
* @return The normalized input.
*/
protected void clampInput(double maxInput) {
m_u = StateSpaceUtil.desaturateInputVector(m_u, maxInput);
Expand Down

0 comments on commit 11e0e19

Please sign in to comment.