If you see this page, then you have not properly generated the documentation. Namely, you have run doxygen from the source directory, which is not appropriate for generating the documentation of Eigen.
In order to generate the documentation of Eigen, please follow these steps:
make sure you have the required software installed: cmake, doxygen, and a C++ compiler.
create a new directory, which we will call the "build directory", outside of the Eigen source directory.
enter the build directory
configure the project:
cmake -DBUILD_DOC=ON /path/to/source/directory
now generate the documentaion:
make
or, if you have two CPUs,
make -j2
Note that this will compile the examples, run them, and integrate their output into the documentation, which can take some time.
After doing that, you will find the HTML documentation in the doc/html/ subdirectory of the build directory.