Plotting 3D scattered data using CSV
15 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Mubarak Alanazi
am 29 Mär. 2022
Bearbeitet: Tala
am 30 Mär. 2022
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?

0 Kommentare
Akzeptierte Antwort
Tala
am 29 Mär. 2022
T= readmatrix('Participants.csv');
x=T(:,1);
y=T(:,2);
z=T(:,3);
scatter3(x,y,z)
10 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Scatter Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!