Plotting 3D scattered data using CSV

조회 수: 32 (최근 30일)
Mubarak Alanazi
Mubarak Alanazi 2022년 3월 29일
편집: Tala 2022년 3월 30일
Hello,
I want to plot the participants' information ( Number of people, Ages , BMI ) of my experiment into a professional 3D plot using MATLAB.
The data showing as below: ( the data is saved in CSV file names "Participants" ):
Please anyone can help me how to do that?

채택된 답변

Tala
Tala 2022년 3월 29일
T= readmatrix('Participants.csv');
x=T(:,1);
y=T(:,2);
z=T(:,3);
scatter3(x,y,z)
  댓글 수: 10
Mubarak Alanazi
Mubarak Alanazi 2022년 3월 30일
thanks
Tala
Tala 2022년 3월 30일
편집: Tala 2022년 3월 30일
anytime :)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Scatter Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by