how to generate full wave rectified sine wave?
63 次查看(过去 30 天)
显示 更早的评论
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!