i am getting data from a sensor in serial communication, How to delete the first string i get from it
Show older comments
after connection i want to print just acc , gyro and mag values. I get 'initializationsuccessful' as my first data set . I dont want that to be there. Help me out
for i= 1:50
data =fscanf(s,'%s');
if data(i)== 'initializationsuccesful!'
delete(data)
else
Acc_Val = data(:,1:21)
end
end
3 Comments
jonas
on 10 Jul 2018
I do not understand the question. Can you describe the data and the desired output?
arvind ramasamy
on 11 Jul 2018
Answers (0)
Categories
Find more on MATLAB Support Package for Arduino Hardware in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!