diff --git a/Basic/lib/PDL/Ufunc.pd b/Basic/lib/PDL/Ufunc.pd index 27400c40f..144bfd86e 100644 --- a/Basic/lib/PDL/Ufunc.pd +++ b/Basic/lib/PDL/Ufunc.pd @@ -3,7 +3,6 @@ use warnings; use PDL::Types qw(types ppdefs_complex ppdefs_all); my $T = [map $_->ppsym, grep $_->integer, types]; -my $C = [ppdefs_complex]; my $A = [ppdefs_all]; pp_addpm({At=>'Top'},<<'EOD'); @@ -132,10 +131,6 @@ EOF Doc => projectdocs( $name, $_->[0].$func, $_->[3] ), ) for ( ['', 'int+', $A, ''], - ['c', 'cdouble', $C, -"Unlike L, the calculations are performed in complex double -precision." - ], ['d', 'double', undef, "Unlike L, the calculations are performed in double precision." ], @@ -158,10 +153,6 @@ EOF Doc => cumuprojectdocs( $name, $_->[0].$cfunc, $_->[3] ), ) for ( ['', 'int+', $A, ''], - ['c', 'cdouble', $C, -"Unlike L, the calculations are performed in complex double -precision." - ], ['d', 'double', undef, "Unlike L, the calculations are performed in double precision." ], diff --git a/Changes b/Changes index 7bd759f1d..7b1f1b42b 100644 --- a/Changes +++ b/Changes @@ -7,6 +7,7 @@ - PDL::GSL now requires GSL >= 2.0 - PDL::GSLSF::* now merged into PDL::GSL::SF - incorporate PDL::Stats::Distr into PDL::GSL since needs GSL +- Ufunc::{csumover,cprodover,ccumusumover,ccumuprodover} removed 2.095 2024-11-03 - add PDL_GENTYPE_IS_{REAL,FLOATREAL,COMPLEX,SIGNED,UNSIGNED}_##ppsym (#502)