我是PDL的新手。 R的ifelse()方法可以进行条件元素选择。例如,
x <- c(1,2,3,4)
ifelse(x%%2, x, x*2)
# [1] 1 4 3 8
任何人都知道如何在PDL中执行此操作?我知道你可以像下面这样做,但还有更好的方法吗?
pdl(map { $_ % 2 ? $_ : $_*2 } @{$x->unpdl} )
答案 0 :(得分:2)
#! /usr/bin/perl
use warnings;
use strict;
use PDL;
my $x = 'PDL'->new([1, 2, 3, 4]);
my $where = ! ($x % 2); # [0 1 0 1]
my $y = $x * ($where + 1);
print $y; # [1 4 3 8]
或者,很快
my $y = $x * ( 2 - $x % 2 );
答案 1 :(得分:1)
自己回答这个问题。它可以是这样的,
use PDL;
sub ifelse {
my ( $test, $yes, $no ) = @_;
$test = pdl($test);
my ( $ok, $nok ) = which_both($test);
my $rslt = zeros( $test->dim(0) );
unless ( $ok->isempty ) {
$yes = pdl($yes);
$rslt->slice($ok) .= $yes->index( $ok % $yes->dim(0) );
}
unless ( $nok->isempty ) {
$no = pdl($no);
$rslt->slice($nok) .= $no->index( $nok % $no->dim(0) );
}
return $rslt;
}
my $x = pdl( 1, 2, 3, 4 );
say ifelse( $x % 2, $x, $x * 2 ); # [1 4 3 8]
say ifelse( $x % 2, 5, sequence( 3 ) ); # [5 1 5 0]
say ifelse( 42, $x, $x * 2 ); # [1]
答案 2 :(得分:0)
优于$x ? $y : $z
?不是我的想法,但这是一个风格和品味的问题
sub ifelse {
my ($x,$y,$z) = @_;
$x ? $y : $z ;
if($x){$y}else{$z} ;
[$y,$z]->[!$x] ;
[$z,$y]->[!!$x] ;
($x && $y) || $z ; # valid only if $y is always true
(!$x && $z) || $y ; # valid only if $z is always true
}