function determ = identity_determinant ( n ) %*****************************************************************************80 % %% IDENTITY_DETERMINANT returns the determinant of the identity. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 12 October 2007 % % Author: % % John Burkardt % % Parameters: % % Input, integer N, the order of A. % % Output, real DETERM, the determinant. % determ = 1.0; return end