微波EDA网,见证研发工程师的成长!
首页 > 研发问答 > 嵌入式设计讨论 > ARM技术讨论 > fft傅里叶变换问题

fft傅里叶变换问题

时间:10-02 整理:3721RD 点击:
现在固定频率8k采样,如果是50hz的信号相对应就是160个采样点,现在要进行傅里叶变换,有没有大神能帮我看看代码  pwcz函数是在干嘛,整个代码能不能帮我屡屡思路

  1. #include <stdio.h>   
  2. #include <stdlib.h>   
  3. #include <math.h>   
  4.    
  5. #define SAMP 160   
  6. #define frequency 47.5             //为方便仿真频率先固定   
  7. #define MN (1.0*SAMP*50/47.5)      
  8. float tmp[21];   
  9. float ratio[20];   
  10. struct compx   
  11. {      
  12.     float real;   
  13.     float imag;   
  14. };   
  15. struct compx sum[SAMP+1];   
  16. float base;                 /*-基波-*/   
  17. float component_O[20];      /* -各次谐波分量-*/   
  18. float component_O_rt[20];   
  19. float ftmp;   
  20. float angle[20];   
  21. int N = SAMP;   
  22. #define RN SAMP*2   
  23. float AD_RESULT[RN];   
  24. float CZ_RESULT[RN];   
  25.    
  26. /*float amend_mt[20]=                   //谐波修正系数  
  27.     {  
  28.         1.0,0.9752,0.9752,0.9752,0.9752,0.9752,0.9752,0.9752,0.9752,0.9752,  
  29.         0.9752*1.08,0.9752*1.015,0.9752*1.022,0.9752*1.025,0.9752*1.030,  
  30.         0.9752*1.032,0.9752*1.042,0.9752*1.055,0.9752*1.065,0.9752*1.083  
  31.     };  
  32. */   
  33.    
  34.    
  35.    
  36. struct compx EE(struct compx b1,struct compx b2)   
  37. {   
  38.     struct compx b3;      
  39.     b3.real=(b1.real*b2.real-b1.imag*b2.imag);   
  40.     b3.imag=(b1.real*b2.imag+b1.imag*b2.real);   
  41.     return(b3);   
  42. }   
  43.    
  44. float pwcz(float x)   
  45. {   
  46.     float y;   
  47.     float e1,e2,e3;   
  48.     unsigned int k;   
  49.    
  50.     if((unsigned int)(x*10)%10<=5)   
  51.     {      
  52.         k=(unsigned int)x;   
  53.         printf("k=%d\t",k);   
  54.     }   
  55.     else   
  56.     {   
  57.         k=(unsigned int)x+1;   
  58.         printf("k1=%d\t",k);   
  59.     }   
  60.     e1=(x-k)*(x-(k+1))/2.0;   
  61.     e2=(x-(k-1))*(x-(k+1))/-1.0;   
  62.     e3=(x-(k-1))*(x-k)/2.0;   
  63.     y=e1*AD_RESULT[k-1]+e2*AD_RESULT[k]+e3*AD_RESULT[k+1];   
  64.     printf("y=%f\n", y);   
  65.     return y;   
  66. }   
  67.    
  68. static void draw_data(float *buf,int len,int mode)   
  69. {   
  70.     FILE *stream;   
  71.     float u;   
  72.     float temp;   
  73.     stream = fopen( "data.txt", "w" );   
  74.     int n = 0;   
  75.     while(len> 0)   
  76.     {   
  77.         temp = *buf;   
  78.         if( temp < 0)   
  79.         {   
  80.             temp = temp/4 + 60;   
  81.         }   
  82.         else   
  83.         {   
  84.             temp = temp/4 + 60;   
  85.         }   
  86.    
  87.         fprintf(stream, "%d %f\t", n++, *buf);   
  88.         for (u = 0; u < temp-1; u++)   
  89.         {   
  90.             fprintf( stream, " ");   
  91.         }   
  92.         fprintf( stream, "*\n");   
  93.         buf += 1;   
  94.         len -= 1;   
  95.     };   
  96.     fclose( stream );   
  97. }   
  98.    
  99.    
  100.    
  101. void main()   
  102. {   
  103.     for(int n=1;n<=2*N;n++)      // 正弦波加谐波计算测试   
  104.     {   
  105.         AD_RESULT[n]=220*sin(2*3.1415926*(n-1)/MN)   
  106.                         +0*sin(2*2*3.1415926*(n-1)/MN)                          //2次   
  107. //                          +22*sin(3*2*3.1415926*(n-1)/MN)                     //3次   
  108. //                              +22*sin(4*2*3.1415926*(n-1)/MN)                 //4次   
  109. //                                  +22*sin(5*2*3.1415926*(n-1)/MN)             //5次   
  110. //                                      +22*sin(6*2*3.1415926*(n-1)/MN)         //6次   
  111. //                                      +22*sin(7*2*3.1415926*(n-1)/MN)             //5次   
  112. //                                      +22*sin(8*2*3.1415926*(n-1)/MN)             //5次   
  113. //                                      +22*sin(9*2*3.1415926*(n-1)/MN)             //5次   
  114. //                                      +6.6*sin(10*2*3.1415926*(n-1)/MN)         //10次   
  115. //                                      +6.6*sin(11*2*3.1415926*(n-1)/MN)             //5次   
  116. //                                      +6.6*sin(12*2*3.1415926*(n-1)/MN)             //5次   
  117. //                                      +6.6*sin(13*2*3.1415926*(n-1)/MN)             //5次   
  118. //                                      +6.6*sin(14*2*3.1415926*(n-1)/MN)             //5次   
  119. //                                      +6.6*sin(15*2*3.1415926*(n-1)/MN)             //5次   
  120. //                                      +6.6*sin(16*2*3.1415926*(n-1)/MN)        //16次   
  121.                                         +11*sin(17*2*3.1415926*(n-1)/MN)   
  122.                                         +11*sin(18*2*3.1415926*(n-1)/MN)   
  123.                                         +11*sin(21*2*3.1415926*(n-1)/MN);   
  124. //                                      +22*sin(19*2*3.1415926*(n-1)/MN);   //19次      
  125. //      printf("AD_RESULT[%d]=%f\n", n, AD_RESULT[n]);   
  126.    
  127.    
  128.     }   
  129.     for(n=1;n<=SAMP;n++)     // 正弦波加谐波计算测试   
  130.     {   
  131.         printf("AD_RESULT[%d]=%f\t", n, AD_RESULT[n]);   
  132.         CZ_RESULT[n]=pwcz(n*50.0/frequency);   
  133.     }   
  134.    
  135.     float tmp2;   
  136.     float temp;   
  137.    
  138.     for(int m=1; m<22;m++)   
  139.     {   
  140.         for(n=1; n<=SAMP; n++)   
  141.         {   
  142.             sum[m].real+=CZ_RESULT[n]*cos(2*3.1415926*m*n/SAMP);   
  143.         }   
  144.         for(n=1; n<=SAMP; n++)   
  145.         {   
  146.             sum[m].imag+=CZ_RESULT[n]*sin(2*3.1415926*m*n/SAMP);   
  147.         }   
  148.    
  149.         tmp2=2*sqrt((sum[m].real*sum[m].real+sum[m].imag*sum[m].imag))/SAMP;   
  150.         temp = tmp2;   
  151.         component_O[m]=temp;   
  152.         ftmp = component_O[m] * component_O[m];   
  153.         component_O_rt[m] = sqrt(ftmp);   
  154.         ratio[m] = component_O_rt[m]*100/component_O_rt[1];   
  155. //      printf("component_O_rt[%d]=%f  ratio[%d] = %f  angle[%d]=%f\n", n, component_O_rt[n], n, ratio[n], n, angle[n]);   
  156.         printf("component_O_rt[%d]=%f  ratio[%d] = %f  \n", m, component_O_rt[m], m, ratio[m]);   
  157.     }      
  158.     draw_data(AD_RESULT, 2*SAMP, 0);   
  159.     draw_data(CZ_RESULT, SAMP, 0);   
  160. }  

复制代码


Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top