i am getting data from a sensor in serial communication, How to delete the first string i get from it
Afficher commentaires plus anciens
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 commentaires
jonas
le 10 Juil 2018
I do not understand the question. Can you describe the data and the desired output?
arvind ramasamy
le 11 Juil 2018
Réponses (0)
Catégories
En savoir plus sur MATLAB Support Package for Arduino Hardware dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!