필터 지우기
필터 지우기

how to generate full wave rectified sine wave?

조회 수: 37 (최근 30일)
thar
thar 2014년 3월 2일
how to generate full wave rectified sine wave of frequency 2KHz, amplitude +/- 0.2 and duration of 1 millisecond ?

채택된 답변

Mischa Kim
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개)

Yahia Abouzahra
Yahia Abouzahra 2019년 3월 15일
t = 0:1e-5:1e-3;
y = abs(0.2 * sin(2*pi*2e3*t));
plot(t,y)

Vipin K Mishra
Vipin K Mishra 2016년 10월 3일

ABIJITH MANTHRAVALAPPIL MURALEEDHARAN
how should we calculate diode current in full wave bridge rectifier RL LOad
to plot diode graph

카테고리

Help CenterFile Exchange에서 Specialized Power Systems에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by