Compare commits
3 Commits
d15f3d1b9c
...
6885e104eb
| Author | SHA1 | Date | |
|---|---|---|---|
| 6885e104eb | |||
| 3a72794684 | |||
| f0bc0ce06a |
20
matrix.c
20
matrix.c
@ -6,7 +6,25 @@
|
|||||||
|
|
||||||
Matrix createMatrix(unsigned int rows, unsigned int cols)
|
Matrix createMatrix(unsigned int rows, unsigned int cols)
|
||||||
{
|
{
|
||||||
|
Matrix m;
|
||||||
|
m.rows = rows;
|
||||||
|
m.cols = cols;
|
||||||
|
m.data = NULL;
|
||||||
|
|
||||||
|
if(rows == 0 || cols == 0)
|
||||||
|
{
|
||||||
|
printf("Error");
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
|
||||||
|
m.data = calloc(rows * cols, sizeof(MatrixType));
|
||||||
|
if (m.data == NULL)
|
||||||
|
{
|
||||||
|
printf("Error");
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
|
||||||
|
return m;
|
||||||
}
|
}
|
||||||
|
|
||||||
void clearMatrix(Matrix *matrix)
|
void clearMatrix(Matrix *matrix)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user