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!