how to store udp data in struct matlab
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have radar data received from udp, how can I store in some format to access it
Risposte (1)
KSSV
il 16 Lug 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 Commenti
Vedere anche
Categorie
Scopri di più su Data Import and Analysis in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!