混和基FFT的C語言實現,可實現任意點N的運算
上傳時間: 2014-08-09
上傳用戶:changeboy
在通訊系統中常見到的cordic,是個用很少複雜度就能實現三角函數的電路,檔案中有C語言的CORDIC程式
上傳時間: 2017-03-07
上傳用戶:lepoke
The Window Design Method The basic idea behind the design of linear-phase FIR filters using the window method is to choose a proper ideal frequency-selective filter [which always has a noncausal, infinite duration impulse response] and then truncate its impulse response hd[n] to obtain a linear-phase and causal FIR filter h[n]. To truncate the impulse response of the ideal filter a time window w[n] is used. Available windows in Matlab are rectangular [or boxcar in Matlab], bartlett, hamming, hanning
標簽: linear-phase The the filters
上傳時間: 2017-03-20
上傳用戶:PresidentHuang
使用多層感知機來做xor分類,可調整neuron數和目標error大小。
上傳時間: 2017-06-09
上傳用戶:qweqweqwe
The code performs a number (ITERS) of iterations of the Bailey s 6-step FFT algorithm (following the ideas in the CMU Task parallel suite). 1.- Generates an input signal vector (dgen) with size n=n1xn2 stored in row major order In this code the size of the input signal is NN=NxN (n=NN, n1=n2=N) 2.- Transpose (tpose) A to have it stored in column major order 3.- Perform independent FFTs on the rows (cffts) 4.- Scale each element of the resulting array by a factor of w[n]**(p*q) 5.- Transpose (tpose) to prepair it for the next step 6.- Perform independent FFTs on the rows (cffts) 7.- Transpose the resulting matrix The code requires nested Parallelism.
標簽: iterations performs Bailey number
上傳時間: 2014-01-05
上傳用戶:libenshu01
一份射頻PCB設計的經驗總結。涉及到手機,GPS,等高頻電路的PCB設計方法。
標簽: PCB
上傳時間: 2017-07-21
上傳用戶:sssl
實驗源代碼 //Warshall.cpp #include<stdio.h> void warshall(int k,int n) { int i , j, t; int temp[20][20]; for(int a=0;a<k;a++) { printf("請輸入矩陣第%d 行元素:",a); for(int b=0;b<n;b++) { scanf ("%d",&temp[a][b]); } } for(i=0;i<k;i++){ for( j=0;j<k;j++){ if(temp[ j][i]==1) { for(t=0;t<n;t++) { temp[ j][t]=temp[i][t]||temp[ j][t]; } } } } printf("可傳遞閉包關系矩陣是:\n"); for(i=0;i<k;i++) { for( j=0;j<n;j++) { printf("%d", temp[i][ j]); } printf("\n"); } } void main() { printf("利用 Warshall 算法求二元關系的可傳遞閉包\n"); void warshall(int,int); int k , n; printf("請輸入矩陣的行數 i: "); scanf("%d",&k); 四川大學實驗報告 printf("請輸入矩陣的列數 j: "); scanf("%d",&n); warshall(k,n); }
上傳時間: 2016-06-27
上傳用戶:梁雪文以
理想的放大器 目前,廠商在線性IC研發上都有重大的突破。使IC型運算放大器的特性和理想相當接近。尤其在低頻操作下,OP Amp電路的工作情形實在太像一個理想放大器,幾乎與理論的推測完全相符。→理想的放大器該具備什麼特性?
標簽: 算放大器原理
上傳時間: 2016-07-16
上傳用戶:WALTER
T+0 隨買隨賣 一個可以在家 玩玩電腦 賺錢的 行業 馬上有大的行情,有興趣的可以往玩玩,不玩的可以路。
標簽: 郵幣卡
上傳時間: 2017-05-13
上傳用戶:520xia
在互補式金氧半(CMOS)積體電路中,隨著量產製程 的演進,元件的尺寸已縮減到深次微米(deep-submicron)階 段,以增進積體電路(IC)的性能及運算速度,以及降低每 顆晶片的製造成本。但隨著元件尺寸的縮減,卻出現一些 可靠度的問題。
標簽: ESD_Technology
上傳時間: 2020-06-05
上傳用戶:shancjb