[commtech] Initialize vector in calc_mat.c

This commit is contained in:
Thomas Preud'homme 2012-03-26 16:14:23 +02:00
parent 09afc1ed2b
commit c37c100355
1 changed files with 2 additions and 0 deletions

View File

@ -33,6 +33,8 @@ int init_calc(int size)
}
for (i = 0; i < n * m; i++)
mat[i] = rand();
for (i = 0; i < m; i++)
vect[i] = rand();
li = 0;
return 0;
}