How to plot distribution curve of multiple data?
5 ビュー (過去 30 日間)
古いコメントを表示

0 件のコメント
採用された回答
Setsuna Yuuki.
2020 年 11 月 13 日
x = [-3:.1:3];
y = normpdf(x,0,1);
y2 = normpdf(x,0,0.5);
plot(x,y,x,y2)
More info:https://es.mathworks.com/help/stats/normal-distribution.html
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Histograms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!