QR decomposition: Difference between revisions

→‎{{header|C}}: fixing several typo which prevent the code to build
(C# solution)
(→‎{{header|C}}: fixing several typo which prevent the code to build)
Line 413:
int m, n;
double ** v;
} mat_t, *mat;
 
mat matrix_new(int m, int n)
Line 445:
}
 
mat matrix_copy(int n;, double a[][n], int m, int n)
{
mat x = matrix_new(m, n);
Line 582:
{
mat R, Q;
mat x = matrix_copy(in5, 5in, 3);
householder(x, &R, &Q);