在 C 中将矩阵的列转换为单个向量的正确方法是什么?

发布于 2024-12-14 13:27:02 字数 606 浏览 1 评论 0原文

int *column_to_row(int **a, int rows, int column_index)
{
// a is a the matrix,rows are the number of rows in the matrix
//column_index is the chosen column of the matrix to be turned into a vector 
     int i;
     int *b=malloc(rows*sizeof(int));// b will be my returned vector
     if(b==NULL)
     {
          exit(EXIT_FAILURE);
     }    
     for(i=0;i<rows;i++)
     {
          b[i]=a[i][column_index];
     }
     return b;
}

我不断收到此 C2040 错误:

error C2040: 'column_to_row' : 'int *(int **,int,int,int)' 与 'int ()' 的间接级别不同

我是什么做错了吗?

int *column_to_row(int **a, int rows, int column_index)
{
// a is a the matrix,rows are the number of rows in the matrix
//column_index is the chosen column of the matrix to be turned into a vector 
     int i;
     int *b=malloc(rows*sizeof(int));// b will be my returned vector
     if(b==NULL)
     {
          exit(EXIT_FAILURE);
     }    
     for(i=0;i<rows;i++)
     {
          b[i]=a[i][column_index];
     }
     return b;
}

I keep getting this C2040 Error:

error C2040: 'column_to_row' : 'int *(int **,int,int,int)' differs in levels of indirection from 'int ()'

What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

聆听风音 2024-12-21 13:27:02

该功能工作正常。

它很可能会抱怨因为原型丢失了。

int *(int **,int,int,int) 看起来函数调用与声明不一致,因为它应该是 int*(int **, int ,int) >

the function works correctly.

most likely it complains because the prototype is missing.

int *(int **,int,int,int) looks like function call does not agree with declaration cause it should be int*(int **, int ,int)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文