Displaying 1 result from an estimated 1 matches for "m_create_double_matrix".
Did you mean:
create_double_matrix
2010 Feb 10
2
system.time provides inaccurate sys.child (PR#14210)
...\
p[i] = (TYPEOFMATRIX *) (p + dim1) + i * dim2; \
return p; \
}
WORK_create_matrix(int)
WORK_create_matrix(double)
#undef WORK_create_matrix
#define create_double_matrix(dim1,dim2)\
m_create_double_matrix(dim1,dim2,__LINE__,__FILE__)
int main(int argc, char *argv[])
{
double **matrix1 = create_double_matrix(size, size);
double **matrix2 = create_double_matrix(size, size);
int iterations = 0;
int i,j;
double iter_limit = 100;
alpha = rand();
beta = rand();
while (it...