Soluzione finale.Controlla la dichiarazione delle funzioni e il passaggio dei variabili.
#include<stdio.h>
#define SIZE 9
void compressione( double (&xx)[3][3],const double (&matriceIniziale)[9][9]);
void printArray( const double (&zz)[9][9]);
void printSottoMatrice(double (&xx)[3][3]);
const double matriceIniziale[SIZE][SIZE] = { { 91, 92, 93, 94, 95, 96, 97, 98, 99 }, { 11, 12, 13, 14, 15, 16, 17, 18, 19 },
{ 21, 22, 23, 24, 25, 26, 27, 28, 29 }, { 31, 32, 33, 34, 35, 36, 37, 38, 39 },
{ 41, 42, 43, 44, 45, 46, 47, 48, 49 }, { 51, 52, 53, 54, 55, 56, 57, 58, 59 },
{ 61, 62, 63, 64, 65, 66, 67, 68, 69 }, { 71, 72, 73, 74, 75, 76, 77, 78, 79 },
{ 81, 82, 83, 84, 85, 86, 87, 88, 89 } };
int main()
{
double aa[3][3];
printf("la matrice e':\n");
printArray(matriceIniziale);
printf("\nla sottomatrice e':\n");
compressione(aa, matriceIniziale);
printSottoMatrice(aa);
return 0;
}
void compressione( double (&xx)[3][3],const double (&matriceIniziale)[9][9])
{
int h, k;
int i, j;
for( i = 0; i < 3; i++ )
{
for( j = 0; j < 3; j++ )
{
h = 2*i + 1;
k = 2*j + 1;
xx[i][j] = (double)((matriceIniziale[h - 1][k - 1] + matriceIniziale[h - 1][k] + matriceIniziale[h - 1][k + 1] + matriceIniziale[h][k - 1] + matriceIniziale[h][k]
+ matriceIniziale[h][k + 1] + matriceIniziale[h + 1][k - 1] + matriceIniziale[h + 1][k] + matriceIniziale[h + 1][k + 1]) / 9);
}
}
}
void printArray( const double (&zz)[9][9])
{
int i;
int j;
for( i = 0; i < 9; i++ )
{
for( j = 0; j < 9; j++ )
{
printf("%.0f ", zz[ i ][ j ]);
}
printf("\n");
}
}
void printSottoMatrice(double (&xx)[3][3])
{
int i;
int j;
for( i = 0; i < 3; i++ )
{
for( j = 0; j < 3; j++ )
{
printf("%.0f ", xx[ i ][ j ]);
}
printf("\n");
}
}