From bdbf1148738c1d6a41751b6835c4bfc922b2879c Mon Sep 17 00:00:00 2001 From: Whiteknight Date: Thu, 3 Dec 2009 09:46:49 -0500 Subject: [PATCH] remove the ctranspose tests from transpose.t --- t/functions/transpose.t | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/t/functions/transpose.t b/t/functions/transpose.t index 504babb..e44e043 100644 --- a/t/functions/transpose.t +++ b/t/functions/transpose.t @@ -1,4 +1,4 @@ -plan(9) +plan(7) A = [ 1, 2, 3, 4 5, 6, 7, 8 @@ -36,10 +36,3 @@ is(X, Y, "transpose() on complex matrix"); Y = A.'; is(X, Y, "transpose op .' on complex matrix"); -X = [ 1-2i 3-4i; 2-3i 4-5i]; -Y = ctranspose(A); -is(X, Y, "ctranspose() on complex matrix"); - -Y = A'; -is(X, Y, "ctranspose op ' on complex matrix"); -