如何定义全局 gsl_vector

How to define a global gsl_vector

有人可以帮我解决这个问题吗?我有这个简单的代码:

#include "prova.h"
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <gsl/gsl_pow_int.h>
#include <gsl/gsl_sf_gamma.h>
#include <gsl/gsl_vector.h>

/* Global structures */
#define LENGTH_Cell 1001
gsl_vector * Cell; /* Global definition */

/* Function */
double sum(int l){
    double sum = 0;

    for(int j=0; j<l; j++)
    {
        sum = sum + gsl_vector_get(Cell, j);
    }

    return sum;
}

int main() {

    gsl_vector * Cell = gsl_vector_alloc(LENGTH_Cell);

    FILE *Cl_in = fopen("C_ells_1000.dat","r");
    gsl_vector_fscanf(Cl_in, Cell);
    fclose(Cl_in);

    for (int i = 0; i < 5; i++)
    {
        printf("sum: %g \n", sum(i));
    }

    return 0;
}

程序编译,但是当我运行程序给出以下输出:

sum: 0 
Segmentation fault: 11

我认为问题在于我没有以正确的方式定义全局 gsl_vector 单元格。 你有什么建议吗?

更多信息。 这是"C_ells_1000.dat"

的内容
0.
0.
1.48889036806174737e-10
6.99975015453780434e-11
3.9538692950311228e-11
2.51360836766398574e-11
1.73497511436282967e-11
1.27165467072195804e-11
9.75002071723029932e-12
7.7432773162174558e-12
6.3213378366797444e-12
5.27764322481988366e-12

而文件 "prova.h" 如下:

#ifndef prova_h
#define prova_h

#include <stdio.h>

#endif /* prova_h */

为了编译程序,我使用命令

gcc -o prova prova_1.c -I /usr/local/include -lm -lgsl -lgslcblas

感谢您的帮助

那是因为你声明了变量 Cell 两次。 请将 gsl_vector * Cell = gsl_vector_alloc(LENGTH_Cell); 替换为 Cell = gsl_vector_alloc(LENGTH_Cell); 另外,不要忘记在所有计算后使用 gsl_vector_free (Cell); 正确释放内存。现代编译器很聪明,但是,它们并不总是能捕捉到这些小问题(我曾经花了大约一周的时间来解决类似的问题)。