Need help in pdf

3 ビュー (過去 30 日間)
Amer Al-Maashani
Amer Al-Maashani 2021 年 1 月 23 日
回答済み: Utkarsh Belwal 2021 年 1 月 27 日
How can I raw the signal & pdf function?
sin (2pit) from 0 to 1, 1 from 1 to 4

回答 (1 件)

Utkarsh Belwal
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

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by