Browse Source

Merge pull request #105 from georgehines/matlab-log-import

fix a field name that I missed last time
master
Lorenz Meier 9 years ago
parent
commit
7b702ee37e
  1. 2
      matlab/analysis/importPX4log.m

2
matlab/analysis/importPX4log.m

@ -99,7 +99,7 @@ while 1 @@ -99,7 +99,7 @@ while 1
if isnumeric(msg_data{k})
allData.(msg_descr{3}).(msg_descr{5}{k})(ind) = msg_data{k};
try
allData.(msg_descr{3}).T(ind) = double(allData.TIME.StartTime(max(1,allData.TIME.index-1)))*1e-6;
allData.(msg_descr{3}).Tsec(ind) = double(allData.TIME.StartTime(max(1,allData.TIME.index-1)))*1e-6;
end
noInc = false;
else

Loading…
Cancel
Save