Phase Shift Sawtooth Wave
29 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ethan
el 15 de Oct. de 2020
Respondida: Ethan
el 16 de Oct. de 2020
Hi everyone,
I am trying to plot a triangular wave for a specified time using the sawtooth function in Matlab. The user inputs values for T_amp, T_freq, and ft and the code then calculates the sawtooth and plots the function vs time, ft.
When plotted, the plot shows the sawtooth starting at -T_amp. I was wondering if there was a way to shift the function so that the sawtooth starts at 0, where the first point would be (0,0) instead of (0, -T_amp). If anyone could help me out with this, I would really appreciate it. Thanks!
tri = T_amp*sawtooth(T_freq*ft, .5);
plot(ft, tri;)
0 comentarios
Respuesta aceptada
Más respuestas (1)
Jon
el 15 de Oct. de 2020
Editada: Jon
el 15 de Oct. de 2020
if you just want to shift it so that it starts at (0,0):
tri = T_amp*sawtooth(T_freq*ft, .5) + T_amp;
Note that with the above tri will range from 0 to 2*T_amp,
if you actually wanted it to range from 0 to T_amp you could use:
tri = T_amp/2*sawtooth(T_freq*ft, .5) + T_amp/2;
6 comentarios
Jon
el 16 de Oct. de 2020
It would be good to either post your solution as an answer and then accept it, or accept this thread and let people find it in the comments just so that others who might have a similar question will know there is an answer available
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!