提交 f0685d4e 编写于 作者: rictjo's avatar rictjo

wrds--

上级 12374251
......@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools.setup(
name = "impetuous-gfa",
version = "0.71.0",
version = "0.72.0",
author = "Richard Tjörnhammar",
author_email = "richard.tjornhammar@gmail.com",
description = "Impetuous Quantification, a Statistical Learning library for Humans : Alignments, Clustering, Enrichments and Group Analysis",
......
......@@ -138,7 +138,6 @@ def kth_householder ( A , k ):
def Householder_transformation ( A ):
A = np.array( A )
n , m = np.shape( A )
n = np.min( np.shape( A ) )
if n < 2 :
return ( A )
......@@ -148,7 +147,6 @@ def Householder_transformation ( A ):
for k in range( 1 , n-1 ) : # ends at n-2
P1 , A1 , Q1 = kth_householder( A0,k=k )
A0 = A1
P0 = P1
P .append([P1,A1,Q1])
return ( A1 , P )
......@@ -169,7 +167,6 @@ def AugumentedReducedDecomposition ( A ) :
def Householder_reduction ( A ):
A = np.array( A )
n , m = np.shape( A )
n = np.min( np.shape( A ) )
if n < 2 :
return ( A )
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册