how to generate full wave rectified sine wave?
40 ビュー (過去 30 日間)
古いコメントを表示
thar
2014 年 3 月 2 日
回答済み: ABIJITH MANTHRAVALAPPIL MURALEEDHARAN
2020 年 4 月 16 日
how to generate full wave rectified sine wave of frequency 2KHz, amplitude +/- 0.2 and duration of 1 millisecond ?
0 件のコメント
採用された回答
Mischa Kim
2014 年 3 月 2 日
編集済み: Mischa Kim
2014 年 3 月 2 日
Hello Thar, attach an Abs (for absolute) block from the Math Operations library to the Sine Wave generator (Sources). In the Sine Wave block you can define the signal parameters (frequency, amplitude). 1 ms would be the simulation stop time.
Similarly, in MATLAB,
t = 0:1e-5:1e-3;
y = abs(0.2 * sin(2*pi*2e3*t));
plot(t,y)
その他の回答 (3 件)
ABIJITH MANTHRAVALAPPIL MURALEEDHARAN
2020 年 4 月 16 日
how should we calculate diode current in full wave bridge rectifier RL LOad
to plot diode graph
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Specialized Power Systems についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!