function determ = daub8_determinant ( n ) %*****************************************************************************80 % %% DAUB8_DETERMINANT returns the determinant of the DAUB8 matrix. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 28 June 2011 % % Author: % % John Burkardt % % Parameters: % % Input, integer N, the order of the matrix. % % Output, real DETERM, the determinant. % determ = - 1.0; return end