From cell array to matrix

Hello Everyone: I need to convert the variables (10 temperature profiles collected with a CTD) contained inside a cell array (rsk.mat herein attached) to ten single arrays. Please could anyone provide a hint as to how to accomplish this?
Cheers,
Felipe

3 Comments

The mat file contains a structure variable named rsk. Where do we find the data you'd like to convert?
Felipe Rios's answer moved here as a comment.
Hi Adam: rsk.data contains the values for the 10 profiles I need to convert to single matrix for each profile.
Thanks,
Felipe
Glad I could help!

Sign in to comment.

 Accepted Answer

Adam Danz
Adam Danz on 11 Dec 2019
Edited: Adam Danz on 11 Dec 2019
This produces a 100x10 matrix and can be applied to several fields of rsk.data.
tstamp = [rsk.data.tstamp];
For fields that contain non-numeric data,
direction = {rsk.data.direction};

1 Comment

Felipe Rios's answer moved here as a comment
Thanks a lot Adam; profiles = [rsk.data.values] is what I needed!
I appreciate your help.
Cheers,
Felipe

Sign in to comment.

More Answers (0)

Categories

Tags

Asked:

on 11 Dec 2019

Commented:

on 11 Dec 2019

Community Treasure Hunt

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

Start Hunting!