Borrar filtros
Borrar filtros

how to plot a full sine wave using quarter wave in MATLAB?

8 visualizaciones (últimos 30 días)
i have genearted quarter sine wave values and saved it in an array and plotted it to get a quarter sine wave. from this array how can i generate a whole sine wave?
  2 comentarios
Kevin Phung
Kevin Phung el 5 de Feb. de 2019
how were those values generated?
yuvarani divakaramoorthy
yuvarani divakaramoorthy el 8 de Feb. de 2019
i have generated the values using piece wise approximation with two ROM tables and added it. stored those added values in an array

Iniciar sesión para comentar.

Respuestas (1)

Andrey Kiselnikov
Andrey Kiselnikov el 5 de Feb. de 2019
Did you mean this:
phase = 0:0.01:pi/2;
q_wave = sin(phase);
plot ([q_wave,fliplr(q_wave),q_wave.*-1,fliplr(q_wave.*-1)]);
?

Categorías

Más información sobre Get Started with DDS Blockset 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!

Translated by