I have a matrix P having 100 rows and 2001 columns. can you please help me to make a probability distribution curve of columns and mean line of rows.
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
like the probability distribution curve lies on y axis(VERTICALLY) and mean value line lies on x axis (HORIZONTALLY).
I need code for this as i am very new to MATLAB and learning it.
1 Kommentar
Antworten (1)
KSSV
am 30 Dez. 2021
x = rand(100,2001) ; % dummy data fro demo
mx = mean(x) ; % mean of row elements
h = histfit(mx,100,'kernel')
0 Kommentare
Siehe auch
Kategorien
Mehr zu Fit Postprocessing 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!
