function lambda = triw_eigenvalues ( n ) %*****************************************************************************80 % %% TRIW_EIGENVALUES returns the eigenvalues of the TRIW matrix. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 21 October 2007 % % Author: % % John Burkardt % % Parameters: % % Input, integer N, the order of A. % % Output, real LAMBDA(N), the eigenvalues. % lambda(1:n) = 1.0; return end