码迷,mamicode.com
首页 >  
搜索关键字:fft    ( 1040个结果
FFT之大数乘法
1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 using namespace std; 8 #define N 50500*2 9 const double PI = acos(-1.0);10 ...
分类:其他好文   时间:2015-05-15 21:14:52    阅读次数:110
快速傅里叶变换FFT
看到两篇讲FFT算法的文章,觉得挺好,虽然还是不懂,说不定以后某一天就懂了呢...http://sgeteternal.iteye.com/blog/1136778http://www.cnblogs.com/Lyush/articles/3219196.htmlhdu1402的大数相乘就可以用到F...
分类:其他好文   时间:2015-05-09 14:45:04    阅读次数:103
matlab fft demo
clf; fs=32;N=1024; %采样频率和数据点数 n=0:N-1; t=n/fs; %时间序列 x=1*sin(t); %信号 y=fft(x,N); %对信号进行快速Fourier变换 mag=abs(y); %求得Fourier变换后的振幅 f=n*fs/N; %频率序列 subplo...
分类:其他好文   时间:2015-05-09 10:10:14    阅读次数:113
matlab 分析wav波形
[x,fs,bits]=wavread('d.wav', [1 5000]); % sound(x, fs, bits); N = length(x); n = 0 : N-1; t = n/fs; % x = x y = fft(x, N); mag = abs(y); f = n * fs / ...
分类:其他好文   时间:2015-05-09 10:04:01    阅读次数:183
C#实现wav波形图
看了一下网上的资料,实现不难,接下来要研究fft 读取wav,保存音频数据到txt using System.IO; using System; using System.Text; namespace 音频处理 { class Program { const int byteSample = 2; const int dat...
分类:Windows程序   时间:2015-05-08 22:04:28    阅读次数:230
音频指纹仿真(Philips)
参考《A Highly Robust Audio Fingerprinting System》 Philips 音频指纹提取流程:   步骤一: resample到5kHz,down-mix到mono。 步骤二: 分帧处理,帧长和帧移见文献。 步骤三: (1)加hanning窗,FFT变换,得到每帧的幅度谱 (2)将频率预300~2000Hz,划分33个子带,类似bark域...
分类:其他好文   时间:2015-05-06 15:10:58    阅读次数:225
音频指纹(Philips)
参考《A Highly Robust Audio Fingerprinting System》Philips 音频指纹提取流程:步骤一:resample到5kHz,down-mix到mono。步骤二:分帧处理,帧长和帧移见文献。步骤三:(1)加hanning窗,FFT变换,得到每帧的幅度谱(2)将频...
分类:其他好文   时间:2015-05-06 15:01:27    阅读次数:280
Xilinx Vivado的使用详细介绍(3):使用IP核
IP核(IP Core) Vivado中有很多IP核可以直接使用,例如数学运算(乘法器、除法器、浮点运算器等)、信号处理(FFT、DFT、DDS等)。IP核类似编程中的函数库(例如C语言中的printf()函数),可以直接调用,非常方便,大大加快了开发速度。 使用Verilog调用IP核 这里简单举一个乘法器的IP核使用实例,使用Verilog调用。首先新建工程,新建demo.v...
分类:其他好文   时间:2015-05-06 13:17:53    阅读次数:197
BZOJ-2179 FFT快速傅立叶
丧心病狂的多项式乘法。。FFT模版题。。#include #include #include #include #include #include #include #include #define rep(i, l, r) for(int i=l; i=r; i--)#define cd comp...
分类:其他好文   时间:2015-05-05 18:53:10    阅读次数:128
BZOJ-2194 快速傅立叶之二
FFT模版题。观察题目,我们可以发现,只要把序列b倒过来,再联想一下乘法运算。。。我们会发现,将序列a和序列b当作100进制数,做一次乘法,然后从低到高每一位便是答案了(乘完无需进位)#include #include #include #include #include #include #inc...
分类:其他好文   时间:2015-05-05 18:20:46    阅读次数:123
1040条   上一页 1 ... 90 91 92 93 94 ... 104 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!