N4 Flight Software N4
Flight software used for the N4 flight computers
Loading...
Searching...
No Matches
kalman.h
1
2#pragma once
3
4/* define struct to hold filtered data*/
6 float x_acceleration;
7};
8
9
10/* this function returns Kalman-filtered data */
11struct Filtered_Data filterData(float);
12
Definition kalman.h:5