function determ = neumann_determinant ( n ) %*****************************************************************************80 % %% NEUMANN_DETERMINANT returns the determinant of the Neumann matrix. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 17 October 2007 % % Author: % % John Burkardt % % Parameters: % % Input, integer N, the order of A. % % Output, real DETERM, the determinant. % determ = 0.0; return end