-3

所以我得到了从矩阵中的每一行中找到最大值的程序,现在如何生成随机矩阵,例如:n 长度和 m 高度?

#include <stdlib.h>
#include <stdio.h>
void max_per_row( double *result, 
                      double matrix[][3], 
                      const int xmax, 
                      const int ymax)
{
int x=0, y=0;

 for(y=0; y < ymax; y++)
    result[y]=y;
for(y=0; y < ymax; y++)
{
    for(x=0; x < xmax; x++)
    {
        if ( matrix[y][x] > result[y] )
            result[y]=matrix[y][x];
    }
}
}

int main(int argc, char **argv)
{
double test1[3][3]={ {-10, -20, 0},
                     {-13, 0,  13},
                     {-99, 99.99, 100.01}};
double result[10]={0};
int y=0;
max_per_row(result, test1, 3, 3 );
for(y=0; y < 3 ; y++)
    printf("max row %d = %f\n", y, result[y]);
return 0;
}
4

1 回答 1

2
int main()
{
    int random[3][3];
    int i, o;

    srand(time(NULL));
    for(o = 0; o<3; o++)
        for(i = 0; i<3; i++)
            random[o][i] = rand();
    return 0;
}

这样就可以了。如果您想要特定的数据子集,您可以%在 的输出上使用运算符rand(),例如:

rand() % 10; // generates a random number 0-9
于 2012-11-27T17:44:15.643 回答