We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eff9dc0 commit 8ca9745Copy full SHA for 8ca9745
Changes
@@ -2,6 +2,7 @@
2
- PP operation for inverse Transform::t_spherical
3
- add PDL::Guide::NumPy doc (#361)
4
- norm works inplace
5
+- $pdl->inplace->transpose now throws error
6
7
2.103 2026-03-03
8
- fix regression in *linvals so takes ndarrays as start and end again
lib/PDL/Basic.pm
@@ -667,6 +667,7 @@ transpose rows and columns.
667
668
sub PDL::transpose {
669
my ($this) = @_;
670
+ barf "\$pdl->inplace->transpose is meaningless" if $this->is_inplace;
671
my $ndims = $this->dims;
672
$ndims > 1 ? $this->xchg(0,1) :
673
$ndims > 0 ? $this->dummy(0) :
0 commit comments