Skip to content

Instantly share code, notes, and snippets.

View MaEtUgR's full-sized avatar
🚁
⚙️ 🚀

Matthias Grob MaEtUgR

🚁
⚙️ 🚀
View GitHub Profile
@MaEtUgR
MaEtUgR / mixer_experiment.m
Created March 19, 2018 14:21
Mixer Roll Pitch Saturation Testing Script
roll = 0.7;
pitch = 0.8;
thrust = 0.9;
out = [thrust + 3*(roll + pitch); thrust + (-roll + pitch); thrust + 3*(roll - pitch); thrust + (-roll - pitch)]
max_out = max(out);
min_out = min(out);
delta_out_max = max_out - min_out;
roll_pitch_scale = 1;