how to store udp data in struct matlab
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I have radar data received from udp, how can I store in some format to access it
Antworten (1)
KSSV
am 16 Jul. 2021
S(1) = struct ;
S(1).distance = rand(10,1) ; % your distance array
S(1).direction = rand(10,1) ; % your direction array
If you have multiple region data, you can save them into different structure arrays.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Data Import and Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!