stft(含:短时傅立叶变换 Gabor变换等)

源代码在线查看: ex05220b.m

软件大小: 1125 K
上传用户: wylyyzjz
关键词: Gabor stft 傅立叶变换 变换
下载地址: 免注册下载 普通下载 VIP

相关代码

				% Chapter 05: Example 5.22 Ploting of FFT execution times
				%
				load fft_time.mat;
				top = ceil(max(fft_time));
				%n = 1:2048;
				subplot
				clg
				plot(n,fft_time,'.');axis([0,2500,0,50])
				xlabel('N');ylabel('Time in Sec.')
				title('FFT execution times')
				text(2100,top,'o(N*N)')
				text(2100,top/2,'o(N*N/2)')
				text(2100,top/3,'o(N*N/3)')
				text(2100,top/4,'o(N*N/4)')
				text(2100,1,'o(N*logN)')
							

相关资源