필터 지우기
필터 지우기

Matlab code of image

조회 수: 4 (최근 30일)
rosee
rosee 2024년 2월 21일
댓글: rosee 2024년 2월 21일
Hello, could you assist me in creating this figure in MATLAB?
  댓글 수: 5
DGM
DGM 2024년 2월 21일
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 2024년 2월 21일
Thank you, I think this is the real part of DFT Matrix.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Discrete Fourier and Cosine Transforms에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by