From b8b5d73408f47e637d70727ac5935294765d7642 Mon Sep 17 00:00:00 2001 From: Neda Darbeheshti <neda.darbeheshti@aei.mpg.de> Date: Thu, 18 May 2017 15:08:53 +0200 Subject: [PATCH] readLRI was updated --- readLRI.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readLRI.m b/readLRI.m index 6602549..794454c 100644 --- a/readLRI.m +++ b/readLRI.m @@ -18,9 +18,9 @@ fid = fopen(file); end % Reads the desired values from LRI1B data. -[gps_time, range, range_rate, range_acc, lighttime_corr, lighttime_rate, lighttime_accl, tma_corr, tma_rate, tma_accl, pitch_A, yaw_A, pitch_B, yaw_B] = textread(file,'%f %f %f %f %*f %f %f %f %f %f %f %f %f %f %f %*f %*f %*f %*f %*f','headerlines',header); +[gps_time, range, range_rate, range_acc, lighttime_corr, lighttime_rate, lighttime_accl, tma_corr, tma_rate, tma_accl, pitch_A, yaw_A, pitch_B, yaw_B] = textread(file,'%f %f %f %f %f %f %f %f %f %f %f %f %f %f %*f %*f %*f','headerlines',header); % Produces the matrix containing the desired values. LRI1B = [gps_time, range, range_rate, range_acc, lighttime_corr, lighttime_rate, lighttime_accl, tma_corr, tma_rate, tma_accl, pitch_A, yaw_A, pitch_B, yaw_B]; -end \ No newline at end of file +end -- GitLab