how to generate full wave rectified sine wave?
60 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
thar
el 2 de Mzo. de 2014
Respondida: ABIJITH MANTHRAVALAPPIL MURALEEDHARAN
el 16 de Abr. de 2020
how to generate full wave rectified sine wave of frequency 2KHz, amplitude +/- 0.2 and duration of 1 millisecond ?
0 comentarios
Respuesta aceptada
Mischa Kim
el 2 de Mzo. de 2014
Editada: Mischa Kim
el 2 de Mzo. de 2014
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)
Más respuestas (3)
Yahia Abouzahra
el 15 de Mzo. de 2019
t = 0:1e-5:1e-3;
y = abs(0.2 * sin(2*pi*2e3*t));
plot(t,y)
0 comentarios
ABIJITH MANTHRAVALAPPIL MURALEEDHARAN
el 16 de Abr. de 2020
how should we calculate diode current in full wave bridge rectifier RL LOad
to plot diode graph
0 comentarios
Ver también
Categorías
Más información sobre Specialized Power Systems en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!