A well-known Hessenberg matrix with some attention-grabbing properties is the Frank Matrix. For instance, the eigenvalues seem in reciprocal pairs . For
:
>> F = gallery('frank',5)
F =
5 4 3 2 1
4 4 3 2 1
0 3 3 2 1
0 0 2 2 1
0 0 0 1 1
>> e = eig(F); type([e 1./e])
ans =
9.9375e-02 9.9375e-02
2.8117e-01 2.8117e-01
1.0000e+00 1.0000e+00
3.5566e+00 3.5566e+00
1.0063e+01 1.0063e+01
One other well-known Hessenberg matrix is the Grcar matrix, a Toeplitz matrix of the shape
>> G = gallery('grcar',5)
G =
1 1 1 1 0
-1 1 1 1 1
0 -1 1 1 1
0 0 -1 1 1
0 0 0 -1 1
It has attention-grabbing pseudospectra.
Companion matrices are higher Hessenberg with a unit subdiagonal:

