35 lines
590 B
C
35 lines
590 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
double **create_matrix(int rows, int cols) {
|
|
int i;
|
|
double **x;
|
|
|
|
x = (double **) malloc(rows * sizeof(double));
|
|
for (i = 0; i < rows; i++) {
|
|
x[i] = (double *) malloc(cols * sizeof(double));
|
|
}
|
|
return x;
|
|
}
|
|
|
|
void destroy_matrix(double **x, int rows) {
|
|
int i;
|
|
|
|
for (i = 0; i < rows; i++) {
|
|
free(x[i]);
|
|
}
|
|
free(x);
|
|
}
|
|
|
|
void print_matrix(double **x, int rows, int cols) {
|
|
int i, j;
|
|
for (i = 0; i < rows; i++) {
|
|
for (j = 0; j < cols; j++) {
|
|
printf("%f\t", x[i][j]);
|
|
}
|
|
printf("\n");
|
|
}
|
|
fflush(stdout);
|
|
}
|