Borrar filtros
Borrar filtros

Matlab code of image

4 visualizaciones (últimos 30 días)
rosee
rosee el 21 de Feb. de 2024
Comentada: rosee el 21 de Feb. de 2024
Hello, could you assist me in creating this figure in MATLAB?
  5 comentarios
DGM
DGM el 21 de Feb. de 2024
Well it's been over a decade since I touched signals calc, but it's obviously a cosine sweep. Your spectrogram looks like
w = 3; % just a guess
t = linspace(0,w,1000);
f = linspace(0,w,1000).';
s = cos(2*pi*f.*t);
pcolor(t,f,s)
shading flat
So maybe you could start with that and work back to time domain.
rosee
rosee el 21 de Feb. de 2024
Thank you, I think this is the real part of DFT Matrix.

Iniciar sesión para comentar.

Respuestas (0)

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by