Skip to content

Question about the navego application #130

Answered by rodralez
Adrienmangini asked this question in Q&A
Discussion options

You must be logged in to vote

Hello Adrien,

You can use the function sensor_read() to read a csv file. Then, you have to transform this data to NaveGo's input format.

Next, some example code:

clc
close all
clear
matlabrc

addpath /path_to/NaveGo/data-acquisition/

sensor_data = sensor_read('/path_to_file/acc_Course_Moi.csv', 1, 1, ';');

imu.t = sensor_data.Timestamp;
imu.wb = [sensor_data.X sensor_data.Y sensor_data.Z ];

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by rodralez
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
2 participants