使用双指针创建一个函数来进行矩阵运算

时间:2018-05-13 10:31:03

标签: c pointers double

我试图创建一个包含一些函数的库,比如创建一个矩阵,做加,子,转置和反转矩阵,我需要使用双指针 一开始,我写这个代码来分配矩阵,但它似乎不起作用,我不知道问题在哪里

#include <stdio.h>
#include <math.h>
#include <stdlib.h>

static double P[4][4]={ { 1,   0,   0,   0},
                        { 0,   1,   0,   0},
                        { 0,   0,   1,   0},
                        { 0,   0,   0,   1}                       
                      };
double **P_M;
void show_matrix(int n,int m,double **matrix)
{
    int i,j;
    printf("\n The matrix is:\n");
    for (i=0;i<n;i++)
    {
        for (j=0;j<m;j++);
        printf(" \t",&matrix[i][j]);
        printf("\n");
    }
}

double matrix( int n, int m, double **matrix)
{
    int row;
    /*  allocate N 'rows'. */
    matrix = malloc( sizeof( double* ) * n );
    /*  for each row, allocate M actual doubles. */
    for( row = 0; row < n; row++ )
    matrix[ row ] = malloc( sizeof( double ) * m );

}

void main()
{
    int i, j;
    matrix(4,4,P_M);    
    for(i=1; i<5; i++)
            for(j=1; j<5; j++)
                P_M[i][j] = P[i-1][j-1];    
    //show_matrix(4,4,P_M);

}  

1 个答案:

答案 0 :(得分:2)

很多问题。

  1. 超出限制 - 因为索引是零。
  2. printf(" \t",&matrix[i][j]); - &gt; printf("%lf \t",matrix[i][j]);
  3. double matrix( int n, int m, double **matrix) - &gt;如果您需要,double **matrix( int n, int m, double ***matrix)以及函数+ return *martix;内的相应更改。否则让它无效。称之为matrix(4,4,&P_M);
  4. 可能还有更多我没有注意到的。 ***指针是愚蠢的,没有必要将地址传递给指针。

    double **matrix(int n, int m)
    {
        int row;
        double **array;
        /*  allocate N 'rows'. */
        if (!(array = malloc(sizeof(double*) * n)))
        {
            return NULL;
        }
        /*  for each row, allocate M actual doubles. */
        for (row = 0; row < n; row++)
            if (!(array[row] = malloc(sizeof(double) * m)))
            {
                //do something if malloc failed - for example free already allocated space.
                return NULL;
            }
        return array;
    }
    

    并且主要是 P_M = matrix(4,4);