Extended target radar measurement using UAV Toolbox
이전 댓글 표시
I am trying to create an extended target simulation to simulate drone tracking using radar. I am using the UAV Toolbox to simulate the drones, and the Radar toolbox with the provided ExampleHelperUAVRadar.m file referenced here. However, even when I set the detection mode to non-clustered, e.g.
radarSensor = radarDataGenerator("no scanning","SensorIndex",1,"UpdateRate",10, ...
"TargetReportFormat","Detections");
the targets behave as points. This leads me to believe that the radar only sees point targets, ignoring UAV meshes.
Is there any way to assign Radar platform attributes to UAV platforms? Thank you very much, and if I omitted any useful information I apologize.
답변 (1개)
Isha
2026년 6월 15일 11:16
0 개 추천
Hello,
Based on the current MathWorks documentation and the “Simulate Radar Sensor Mounted on UAV” example, the behavior you are observing is expected. In this workflow, the UAV mesh created with updateMesh is used for scenario visualization, while radarDataGenerator generates detections or tracks from target platform states. I could not find documentation stating that the UAV mesh is automatically converted into an extended radar target or that radar-specific platform attributes can be assigned directly to a uavPlatform for this purpose.
Also, setting:
"TargetReportFormat","Detections"
changes the output to detections (clustered or unclustered), but the documentation snippet does not indicate that this setting changes the target from a point-like platform representation to a mesh-based extended target.
So, from the sources I found, there does not appear to be a built-in way in this example workflow to make the radar automatically “see” the UAV mesh as an extended target. If you need extended-target behavior, a practical approach is to model the UAV as multiple scattering centers / multiple closely spaced targets. That idea is consistent with extended-target radar modeling based on scattering centers, although I did not find a MATLAB example in the returned sources that shows this as a direct built-in UAV Toolbox feature.
Hope this helps.
카테고리
도움말 센터 및 File Exchange에서 Scenario Simulation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!