clear all; lstf= 1/sqrt(2)* [ 0,0,0,0,0,0, 0,0,1+1i,0, 0,0,-1-1i,0, 0,0,1+1i,0, 0,0,-1-1i,0, 0,0,-1-1i,0, 0,0,1+1i,0, 0,0,0,0, 0,0,-1-1i,0, 0,0,-1-1i,0, 0,0,1+1i,0, 0,0,1+1i,0, 0,0,1+1i,0, 0,0,1+1i,0, 0,0,0,0,0,0]; figure; plot(-10+0.3125:0.3125:10,abs(lstf)); xlable('Frequency-Mhz'); ylabel('Amplitude'); lstf_td=ifft(lstf); figure; plot(abs(lstf_td)); xlable('Samples'); ylabel('Amplitude'); lstf_td_repeat=cat(1,lstf_td,lstf_td,lstf_td,lstf_td); figure; plot(abs(lstf_td_repeat)); xlable('Samples'); ylabel('Amplitude'); lstf_fd_repeat=fft(lstf_td_repeat); figure; plot(-10+0.3125/4:0.3125/4:10,abs(lstf_fd_repeat)); xlable('Frequency-Mhz'); ylabel('Amplitude');
clear all; lstf= 1/sqrt(2)* [ 0,0,0,0,0,0, 0,0,1+1i,0, 0,0,-1-1i,0, 0,0,1+1i,0, 0,0,-1-1i,0, 0,0,-1-1i,0, 0,0,1+1i,0, 0,0,0,0, 0,0,-1-1i,0, 0,0,-1-1i,0, 0,0,1+1i,0, 0,0,1+1i,0, 0,0,1+1i,0, 0,0,1+1i,0, 0,0,0,0,0,0]; figure; plot(-10+0.3125:0.3125:10,abs(lstf)); xlable('Frequency-Mhz'); ylabel('Amplitude'); lstf_td=ifft(lstf); figure; plot(abs(lstf_td)); xlable('Samples'); ylabel('Amplitude'); lstf_td_repeat=cat(1,lstf_td,lstf_td,lstf_td,lstf_td); figure; plot(abs(lstf_td_repeat)); xlable('Samples'); ylabel('Amplitude'); lstf_fd_repeat=fft(lstf_td_repeat); figure; plot(-10+0.3125/4:0.3125/4:10,abs(lstf_fd_repeat)); xlable('Frequency-Mhz'); ylabel('Amplitude');
标签:ifft,figure,示例,fft,lstf,repeat,0.3125,1i,td From: https://www.cnblogs.com/DF11G/p/17980793