필터 지우기
필터 지우기

Hi everyone. How can i extract the first column(first field) from a structure 1x84 with 3 fields?

조회 수: 25 (최근 30일)
I do like (:,1) but it only gives me a struct 1x1 that contains the first row with the 3 fields but I need only the first field (first column) with all the 84 elements in column.
Thank you

답변 (1개)

Image Analyst
Image Analyst 2019년 6월 30일
After you read this link, attach your structure array in a .mat file.
In the meantime, try
output = vertcat(s.fieldYouWant);
  댓글 수: 2
Image Analyst
Image Analyst 2019년 6월 30일
Try this:
s = load('Tailwind_satE08.mat')
DETECTION = s.DETECTION
% Extract into 3 separate variables.
ranges = [DETECTION.Range];
Doppler = [DETECTION.Doppler];
TxPOS = [DETECTION.TxPOS];

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by