how to store udp data in struct matlab
조회 수: 1 (최근 30일)
이전 댓글 표시
I have radar data received from udp, how can I store in some format to access it
답변 (1개)
KSSV
2021년 7월 16일
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Import and Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!