using elements of table as variable

Hi I've a table A which contains numerous sets of data. Each set there are three components x,y and z. I need to plot scatter3 using these data. But don't know how to use these data from table. Files are attached.
Thanks.

 採用された回答

Walter Roberson
Walter Roberson 2018 年 1 月 8 日

0 投票

A_mat = cell2mat(A);
x = A_mat(:,1);
y = A_mat(:,2);
z = A_mat(:,3);
scatter3(x, y, z);

1 件のコメント

Ashbub
Ashbub 2018 年 1 月 8 日
Many thanks Walter.

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

その他の回答 (0 件)

カテゴリ

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

質問済み:

2018 年 1 月 8 日

コメント済み:

2018 年 1 月 8 日

Community Treasure Hunt

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

Start Hunting!

Translated by