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
2 ビュー (過去 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!