in reply to perlxs and gcc error
value=value+in_matrix[i][a]*in_matrix[j][a];
you are assuming in_matrix is an array of pointers. However, you have declared in_matrix to be double &in_matrix. Are you sure you don't want double ** in_matrix here?
Abigail
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: perlxs and gcc error
by Anonymous Monk on Feb 11, 2003 at 12:38 UTC | |
by Abigail-II (Bishop) on Feb 11, 2003 at 13:24 UTC |