How to merge 2 data?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How to write the blow code in MATLAB Analysis ?
int16_t send_windSpeed =((msg[0] << 8) + msg[1]) ;
0 Kommentare
Antworten (1)
Yongjian Feng
am 18 Jul. 2021
Bearbeitet: Yongjian Feng
am 18 Jul. 2021
Are you looking for bitshift function? Something like:
send_windSpeed = bitshift(msg(0), 8) + msg(1);
3 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!