in reply to Access element of a piddle
but I don't know if that's the best option.pdl> help at Module PDL::Core at Returns a single value inside a piddle as perl scalar. $z = at($piddle, @position); $z=$piddle->at(@position); @position is a coordinate list, of size equal to the number of dimensions in the piddle. Occasionally useful in a general context +, quite useful too inside PDL internals. pdl> $x = sequence 3,4 pdl> p $x->at(1,2) 7 at converts any bad values into the string 'BAD'. # line 3108 "Basic/Core/Core.pm.PL (i.e. PDL::Core.pm)" pdl>
|
|---|