HOW do I plot 3D normal distribution in MATLAB
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentar
Image Analyst
am 7 Nov. 2021
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?
Antworten (1)
Siehe auch
Kategorien
Mehr zu Histograms 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!