Generate simple chirp signal
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello,
How can i generate the simplest form of a chirp in matlab using the chirp function? what are good values for t, f0, t1, f1? Should I plot the frequency using fft? Thanks
y = chirp(t,f0,t1,f1)
댓글 수: 0
채택된 답변
Star Strider
2015년 9월 30일
The simplest is the Linear Chirp. ‘Good’ values for the arguments are whatever best satisfy the requirements for your generating the chirp. I would use the spectrogram function rather than the fft, although the one you choose depends on the information you want from it. Both are ‘correct’.
댓글 수: 2
Star Strider
2018년 2월 24일
The fft function is inappropriate for time-varying signal such as a chirp. Use the spectrogram function instead.
추가 답변 (1개)
Image Analyst
2015년 9월 30일
I'm not sure what you're asking for. Why would one set of parameters be any simpler than another? Just experiment around with parameters until you get a set you like. If you want to plot the frequency with fft() or pwelch(), go ahead.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Spectral Estimation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!