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);

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Tables에 대해 자세히 알아보기

질문:

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