]> gitweb.michael.orlitzky.com - sage.d.git/blob - mjo/eja/eja_utils.py
eja: delete unused vec2mat() function.
[sage.d.git] / mjo / eja / eja_utils.py
1 from sage.matrix.constructor import matrix
2 from sage.modules.free_module_element import vector
3 from sage.functions.other import sqrt
4
5 def _mat2vec(m):
6 return vector(m.base_ring(), m.list())