mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
10 lines
262 B
Matlab
10 lines
262 B
Matlab
fname = 'indoor_flight_test.px4log';
|
|
|
|
%% entire log
|
|
wholeLog = importPX4log(fname,{});
|
|
|
|
%% attitude message
|
|
attitudeData = importPX4log(fname,{'ATT'});
|
|
|
|
%% estimator messages
|
|
estimatorData = importPX4log(fname,{'EST0','EST1','EST2','EST3','EST4','EST5','EST6'}); |