Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tdenewiler/mae283-lectures
Lectures for MAE 283: Parameter Estimation at UCSD, Professor: Raymond de Callafon, Fall 2009
https://github.com/tdenewiler/mae283-lectures
Last synced: 7 days ago
JSON representation
Lectures for MAE 283: Parameter Estimation at UCSD, Professor: Raymond de Callafon, Fall 2009
- Host: GitHub
- URL: https://github.com/tdenewiler/mae283-lectures
- Owner: tdenewiler
- Created: 2013-06-26T18:03:18.000Z (over 11 years ago)
- Default Branch: main
- Last Pushed: 2022-10-13T21:14:23.000Z (over 2 years ago)
- Last Synced: 2024-11-12T17:50:26.726Z (2 months ago)
- Language: TeX
- Homepage: https://denewiler.us/mae283_lectures.pdf
- Size: 3.51 MB
- Stars: 0
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MAE 283 Lectures
![Unit Tests](https://github.com/tdenewiler/mae283-lectures/workflows/Unit%20Tests/badge.svg)
This repository contains lecture notes completed for [MAE 283](http://mechatronics.ucsd.edu/mae283a/) at UC San Diego
during Fall quarter 2009 and taught by Prof de Callafon.You can compile using
```shell
pdflatex mae283_lectures.tex
bibtex mae283_lectures.aux
pdflatex mae283_lectures.tex
pdflatex mae283_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 . --user-paths statick_config --profile tex-profile.yaml --config tex-config.yaml
```