From: Michael Orlitzky Date: Fri, 23 Aug 2019 19:22:56 +0000 (-0400) Subject: eja: delete unused vec2mat() function. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=sage.d.git;a=commitdiff_plain;h=2f0d9b59cd2184614bbbce803f78a40778e812ef eja: delete unused vec2mat() function. --- diff --git a/mjo/eja/eja_utils.py b/mjo/eja/eja_utils.py index e8b7dc7..701d5f5 100644 --- a/mjo/eja/eja_utils.py +++ b/mjo/eja/eja_utils.py @@ -4,6 +4,3 @@ from sage.functions.other import sqrt def _mat2vec(m): return vector(m.base_ring(), m.list()) - -def _vec2mat(v): - return matrix(v.base_ring(), sqrt(v.degree()), v.list())