Skip to content

Commit f33e2db

Browse files
committed
fix meaningless $pdl->inplace->transpose
1 parent cdfda19 commit f33e2db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/PDL/Stats/Basic.pd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ sub rtable {
807807
my ($idv, $ido) = ($id_r, $id_c);
808808
# var in columns instead of rows
809809
$opt{R_VAR} == 0
810-
and ($data, $idv, $ido) = ($data->inplace->transpose, $id_c, $id_r);
810+
and ($data, $idv, $ido) = ($data->transpose, $id_c, $id_r);
811811

812812
if ($opt{V}) {
813813
print "OK.\ndata table as PDL dim o x v: " . $data->info . "\n";

0 commit comments

Comments
 (0)