using elements of table as variable
1 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
采纳的回答
Walter Roberson
2018-1-8
A_mat = cell2mat(A);
x = A_mat(:,1);
y = A_mat(:,2);
z = A_mat(:,3);
scatter3(x, y, z);
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!