function determ = householder_determinant ( n, x ) %*****************************************************************************80 % %% HOUSEHOLDER_DETERMINANT returns the determinant of a HOUSEHOLDER matrix. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 31 May 2002 % % Author: % % John Burkardt % % Parameters: % % Input, integer N, the order of A. % % Input, real X(N), the vector that defines the % Householder matrix. % % Output, real DETERM, the determinant. % determ = -1.0; return end