how to store udp data in struct matlab
Mostrar comentarios más antiguos
I have radar data received from udp, how can I store in some format to access it
7 comentarios
Rik
el 16 de Jul. de 2021
If you have trouble with Matlab basics you may consider doing the Onramp tutorial (which is provided for free by Mathworks).
Rashi Mehrotra
el 16 de Jul. de 2021
KSSV
el 16 de Jul. de 2021
There are mutiple ways to achieve this. How one can elaborate without knowing how the data is and what format you are targetting?
Rashi Mehrotra
el 16 de Jul. de 2021
Rik
el 16 de Jul. de 2021
Is your question how to access the data in a field of a struct? How to work with structs is part of the Matlab basics.
What exactly is your question?
Rashi Mehrotra
el 16 de Jul. de 2021
Rik
el 16 de Jul. de 2021
Respuestas (1)
KSSV
el 16 de Jul. de 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.
Categorías
Más información sobre Spreadsheets en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!