HOW do I plot 3D normal distribution in MATLAB
7 ビュー (過去 30 日間)
古いコメントを表示
Hi everyone. I have a problem with my code. I can’t write the normal distribution code, and after that plot that in 3D. I want you to continue line 21. Thanks.
clc
clear all
heightm = 175+7*randn(1,100);
heightm =sort (heightm);
weightm = 80+5*randn(1,100);
weightm =sort (weightm);
%TWO classes
heightw = 160+6*randn(1,150);
heightw =sort (heightw);
weightw = 60+4*randn(1,150);
heightw =sort (heightw);
%feature vector 2*1
feature_vectorm = [heightm;weightm ];
feature_vectorw = [heightw;weightw ];
% mij (mean vector)
m2m= mean(feature_vectorm');
m2w= mean(feature_vectorw');
1 件のコメント
Image Analyst
2021 年 11 月 7 日
Not sure what is to be plotted. You forgot to tell us. What do you want along each (x, y, and z) axis? Have you tried plot3()?
To get the distribution, have you tried the histogram() function?
Is this homework?
回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Histograms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!