Skip to content

Commit

Permalink
remove the ctranspose tests from transpose.t
Browse files Browse the repository at this point in the history
  • Loading branch information
Whiteknight committed Dec 3, 2009
1 parent 6f7b40e commit bdbf114
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions t/functions/transpose.t
@@ -1,4 +1,4 @@
plan(9)
plan(7)

A = [ 1, 2, 3, 4
5, 6, 7, 8
Expand Down Expand Up @@ -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");

0 comments on commit bdbf114

Please sign in to comment.