hi every one, how can i extract the first column(first field) that it's name is Range form a structure 1x84 with 3 fields, thank you
1 次查看(过去 30 天)
显示 更早的评论
i attached the structure field in a file .mat and i take a screen shot , if it can help, thank you again
0 个评论
采纳的回答
Image Analyst
2019-6-30
Like I gave in my answer to your duplicate question:
s = load('Tailwind_satE08.mat')
DETECTION = s.DETECTION
% Extract into 3 separate variables.
Range = [DETECTION.Range];
Doppler = [DETECTION.Doppler];
TxPOS = [DETECTION.TxPOS];
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!