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