Skip to content

Commit

Permalink
defined constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
ShisatoYano committed Jan 13, 2025
1 parent 39b04ff commit cd85c03
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/components/control/lqr/lqr_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,16 @@

#import component modules
from trapezoidal_speed_profile import TrapezoidalSpeedProfile


class LqrController:
"""
Controller class by LQR(Linear Quadratic Regulator) algorithm
"""

def __init__(self, spec, course=None):
"""
Constructor
course: Course data and logic object
"""
pass

0 comments on commit cd85c03

Please sign in to comment.