How to take the absolute value for 2D spectrum?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ilya Grishanovich
el 21 de Abr. de 2022
Comentada: Ilya Grishanovich
el 21 de Abr. de 2022
I have 2D spectrum with positive(blue) and negative(red) signals, I want to make all signals positive and to save the received spectra.
How to make it? (thank you in advance)
0 comentarios
Respuesta aceptada
Hiro Yoshino
el 21 de Abr. de 2022
try function "abs":
t=-pi:0.01:pi
y= sin(t);
plot(t,y);
y2 = abs(y);
plot(t,y2);
?
Más respuestas (1)
Ver también
Categorías
Más información sobre Fourier Analysis and Filtering 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!