i am getting data from a sensor in serial communication, How to delete the first string i get from it
Ältere Kommentare anzeigen
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 Kommentare
jonas
am 10 Jul. 2018
I do not understand the question. Can you describe the data and the desired output?
arvind ramasamy
am 11 Jul. 2018
Antworten (0)
Kategorien
Mehr zu MATLAB Support Package for Arduino Hardware finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!