Borrar filtros
Borrar filtros

how to save spectrogram of signal as image ?

35 visualizaciones (últimos 30 días)
arunnagiri murrugesan
arunnagiri murrugesan el 8 de Sept. de 2018
Comentada: RaB el 4 de Abr. de 2021
how to save spectrogram of signal as pixel or image ?
  1 comentario
RaB
RaB el 4 de Abr. de 2021
how do you save the image without title, labels, ticks, etc.? ... just the image

Iniciar sesión para comentar.

Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 8 de Sept. de 2018
Editada: KALYAN ACHARJYA el 8 de Sept. de 2018
% You can do it in multiples ways, for example, check the following sample code
N=1024;
n=0:N-1;
w0=2*pi/5;
x=sin(w0*n)+10*sin(2*w0*n);
s=spectrogram(x);
spectrogram(x,'yaxis');
saveas(gcf,'filename.png'); %Use to display save as image

Más respuestas (0)

Categorías

Más información sobre Time-Frequency Analysis 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