function determ = conex2_determinant ( alpha ) %*****************************************************************************80 % %% CONEX2_DETERMINANT returns the determinant of the CONEX2 matrix. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 22 October 2007 % % Author: % % John Burkardt % % Parameters: % % Input, real ALPHA, the scalar defining A. % % Output, real DETERM, the determinant. % determ = 1.0 / alpha; return end