Files
pyrobolearn/pyrobolearn/control/ilqr.py
T

25 lines
523 B
Python

# -*- coding: utf-8 -*-
# This file describes the iterative Linear Quadratic Regulator (iLQR)
class ILQR(object):
r"""Iterative Linear Quadratic Regulator
Type: Model-based (optimal control)
Notes: It assumes that the dynamics are described by a linear system of differential equations
References:
[1]
See also:
- `lqr.py`: LQR
- `lqg.py`: LQG = LQR + LQE
- `ilqg.py`: iterative LQG
"""
def __init__(self):
pass
def compute(self):
pass