Plotting 3D scattered data using CSV

30 ビュー (過去 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 Center および File ExchangeScatter Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by