Need help in pdf
조회 수: 1 (최근 30일)
이전 댓글 표시
How can I raw the signal & pdf function?
sin (2pit) from 0 to 1, 1 from 1 to 4
댓글 수: 0
답변 (1개)
Utkarsh Belwal
2021년 1월 27일
Hello Amer,
I think that you are trying to draw the sin and pdf function in MATLAB. Please refer to the following code for drawing a sin function between 0 and 1:
t = 0:0.01:1;
Y = sin(2*pi*t);
plot(t , Y)
For pdf function, please refer to the doucmentation link: https://www.mathworks.com/help/stats/prob.normaldistribution.pdf.html
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!