필터 지우기
필터 지우기

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

채택된 답변

Image Analyst
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개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

제품


릴리스

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by