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