From c629b21c8a76cfd43b72bb3c71a8a63c1628a16c Mon Sep 17 00:00:00 2001 From: Vladimir Chalupecky Date: Sun, 3 Jun 2018 08:12:18 +0200 Subject: [PATCH] lapack/gonum: fix doc comment for Dtrevc3 --- lapack/gonum/dtrevc3.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lapack/gonum/dtrevc3.go b/lapack/gonum/dtrevc3.go index 200bf17d..6e9a3354 100644 --- a/lapack/gonum/dtrevc3.go +++ b/lapack/gonum/dtrevc3.go @@ -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. //