How to plot distribution curve of multiple data?

조회 수: 5 (최근 30일)
Han Pham
Han Pham 2020년 11월 13일
댓글: Han Pham 2020년 11월 15일

채택된 답변

Setsuna Yuuki.
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 CenterFile Exchange에서 Histograms에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by