lapack/gonum: fix doc comment for Dtrevc3

This commit is contained in:
Vladimir Chalupecky
2018-06-03 08:12:18 +02:00
committed by Vladimír Chalupecký
parent e93c1bf6e2
commit c629b21c8a

View File

@@ -21,9 +21,8 @@ import (
// The right eigenvector x of T corresponding to an
// eigenvalue λ is defined by
// T x = λ x,
// and the left eigenvector is defined by
// y^H T = λ y^H,
// where y^H is the conjugate transpose of y.
// and the left eigenvector y is defined by
// y^T T = λ y^T.
//
// The eigenvalues are read directly from the diagonal blocks of T.
//