function e = eigmatrix(a1)
%EIGMATRIX Returns the eigen value of the given matrix
%    This function returns the eigen value of the input matrix. This
%    function is used to demonstate the functionality of MATLAB Compiler.
%    Refer to the shared library section of MATLAB Compiler for more
%    information.

% Copyright 2003 The MathWorks, Inc.

e = eig(a1);