how to convert cos(2*pi*f1*t).^2 wave into cos(2*pi*f1*t) wave?)
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
i want to convert cosine square wave back into cosine wave.. can any one guide me please?
Respuestas (1)
Jan
el 28 de Nov. de 2017
Editada: Jan
el 28 de Nov. de 2017
By taking the square root?
f1 = 23;
t = linspace(0, 4*pi, 10000);
y2 = cos(2*pi*f1*t).^2;
y = sqrt(y2)
But the sign is lost. If you do not have any addition information about the phase, there is no way to find out, which parts have been positive or negative before the squaring. But wouldn't it be simpler to calculate the values directly?
y = cos(2*pi*f1*t);
? What is the problem you have to solve? Maybe you have the values of y2 and want to fit the parameter f1, such that you can create the cosine values afterwards?
0 comentarios
Ver también
Categorías
Más información sobre Octave 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!