function determinant = orth_random_determinant ( n, seed ) %*****************************************************************************80 % %% ORTH_RANDOM_DETERMINANT returns the determinant of the ORTH_RANDOM matrix. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 17 June 2011 % % Author: % % John Burkardt % % Parameters: % % Input, integer N, the order of the matrix. % % Input, integer SEED, a seed for the random number % generator. % % Output, real DETERMINANT, the determinant. % determinant = 1.0; return end