Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tdenewiler/mae288a-lectures
Lectures for MAE 288A: Optimal Control at UCSD, Professor: William McEneaney, Fall 2009
https://github.com/tdenewiler/mae288a-lectures
Last synced: about 2 months ago
JSON representation
Lectures for MAE 288A: Optimal Control at UCSD, Professor: William McEneaney, Fall 2009
- Host: GitHub
- URL: https://github.com/tdenewiler/mae288a-lectures
- Owner: tdenewiler
- Created: 2013-06-26T20:10:55.000Z (over 11 years ago)
- Default Branch: main
- Last Pushed: 2022-10-13T20:33:20.000Z (about 2 years ago)
- Last Synced: 2024-10-12T13:44:24.216Z (3 months ago)
- Language: TeX
- Homepage: https://denewiler.us/mae288a_lectures.pdf
- Size: 1.74 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MAE 288A Lectures
![Unit Tests](https://github.com/tdenewiler/mae288a-lectures/workflows/Unit%20Tests/badge.svg)
This repository contains lecture notes completed for [MAE 288A](http://maeresearch.ucsd.edu/mceneaney/mae288a/mae288a.html)
at UC San Diego during Fall quarter 2009 and taught by Prof McEneaney.You can compile using
```shell
pdflatex mae288a_lectures.tex
bibtex mae288a_lectures.aux
pdflatex mae288a_lectures.tex
pdflatex mae288a_lectures.tex
```After running those commands initially, further changes can be compiled just running a single `pdflatex` command.
## Static Analysis
[Statick](https://github.com/sscpac/statick) is used to ensure consistent style and that certain classes of errors
do not exist in this repository.
To run Statick locally, do the following:```shell
apt install chktex lacheck python3-venv
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
mkdir statick_output
statick . statick_output --user-paths statick_config --profile tex-profile.yaml --config tex-config.yaml
```