Hi how can id do this plot f = 5sin⁡(10pi*t) over one period

2 ビュー (過去 30 日間)
Waleed Alrabghi
Waleed Alrabghi 2016 年 2 月 11 日
回答済み: Waleed Alrabghi 2016 年 2 月 11 日
Hi how can id do this plot f = 5sin(10pi*t) over one period

採用された回答

Stephen23
Stephen23 2016 年 2 月 11 日
編集済み: Stephen23 2016 年 2 月 11 日
>> N = 200;
>> t = linspace(0,2/10,N);
>> v = 5*sin(10*pi*t);
>> plot(t,v)
creates this:

その他の回答 (1 件)

Waleed Alrabghi
Waleed Alrabghi 2016 年 2 月 11 日
Thank you Stephen :)

カテゴリ

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