• 大小: 1KB
    文件类型: .c
    金币: 1
    下载: 0 次
    发布日期: 2021-06-11
  • 语言: C/C++
  • 标签: 互相关  C  xcorr  

资源简介

用C编的互相关程序,与matlab中的xcorr相对应,correlation

资源截图

代码片段和文件信息

#include 
#include 
#include 

#define NN 10

void xcorr(float *r unsigned short *x unsigned short *y int N);

int main()
{  
    unsigned short x[10]={1122345678};
    unsigned short y[10]={1345678952};
    float r[19] = {0};
    
    FILE *fp_out;
    int delay;
    
    xcorr(r x y NN);
//Open the file to write
    if((fp_out=fopen(“out_xcorr.txt““wt“)) == NULL)
{
    printf(“Cannot open this file!\n“);
exit(0);
}

for(delay = -NN + 1; delay < NN; delay++)
        fprintf(fp_out“%d %f\n“delayr[delay + NN

评论

共有 条评论