Filter löschen
Filter löschen

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 Ansicht (letzte 30 Tage)
i attached the structure field in a file .mat and i take a screen shot , if it can help, thank you again

Akzeptierte Antwort

Image Analyst
Image Analyst am 30 Jun. 2019
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];

Weitere Antworten (0)

Kategorien

Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by