From 87c360a6b83aa5e3491f7c83f989c5bf87e21907 Mon Sep 17 00:00:00 2001 From: Vladimir Chalupecky Date: Wed, 5 Oct 2016 23:13:37 +0900 Subject: [PATCH] lapack: add UpdateQ constant for Dtrexc --- lapack.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lapack.go b/lapack.go index 0f94c969..23d7b806 100644 --- a/lapack.go +++ b/lapack.go @@ -144,6 +144,9 @@ const ( UpdateZ Comp = 'V' ) +// UpdateQ specifies that the matrix Q will be updated. +const UpdateQ Comp = 'V' + // EVSide specifies what eigenvectors will be computed. type EVSide byte