How to extract data (columns) from cell class

I'm starting working with MatLab just now, so, it may be a basic question.
My cell size is 28x4, and I want to extract and define all data avaiable. Like temperature, depth and salinity. How can I do that?
I can see all data in the 'workspace', and this is all I have until now.
data = load('filesname.mat'); %here the data is in struct form
A=data.ctd; %here the data is in cell form

2 件のコメント

Mathieu NOE
Mathieu NOE 2020 年 12 月 1 日
hello
example below
Concatenate the contents of the 2nd row into a numeric array.
nums = [C{2,:}]
Image Analyst
Image Analyst 2020 年 12 月 1 日
Attach A if you need more help.
save('answers.mat', 'A');

サインインしてコメントする。

回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeCell Arrays についてさらに検索

質問済み:

2020 年 11 月 30 日

コメント済み:

2020 年 12 月 1 日

Community Treasure Hunt

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

Start Hunting!

Translated by