Help writing and solving a problem
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I'm having a hard time with this problem regarding ideal diode and voltage. I am given the voltage across load
VL=
vs if vs > 0 | 0 if vs <=0
Supply voltage is given by:
vs(t) = 3e^(-t/3)sin(pi*t)
I have to plot VL versus t for 0 <= t <= 10
I've tried using a for loop but I can't get it figured out.
Can someone help?
0 comentarios
Respuesta aceptada
Walter Roberson
el 1 de Abr. de 2012
VL = vs;
VL(vs < 0) = 0;
3 comentarios
Walter Roberson
el 1 de Abr. de 2012
That's because you are using only integer t . sin(pi times an integer) is always 0.
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!