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

fix a field name that I missed last time
This commit is contained in:
Lorenz Meier 2016-04-26 10:03:37 +02:00
commit 7b702ee37e

View File

@ -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