[Rd] [R] unvectorized option for outer()

Duncan Murdoch murdoch at stats.uwo.ca
Mon Oct 31 20:44:27 CET 2005


On 10/31/2005 2:33 PM, Gabor Grothendieck wrote:
> On 10/31/05, Tony Plate <tplate at acm.org> wrote:
>>
>> I have to confess I don't really understand how environments work with
>> functions, so I don't know if this Vectorize() function will work in
>> general.  What is the appropriate environment for returned value of
>> Vectorize()?  Is this approach to creating a Vectorize() function on the
> 
> I think the environments of the input and output functions should be
> the same which can be accomplished via:
> 
> environment(FUNV) <- environment(FUN)

No, definitely not.  For example, FUN may have been defined in an 
environment in which "eval" has been replaced, but if FUNV needs eval, 
it needs the original one.

At some point FUNV will call FUN.  As long as that evaluation of FUN 
keeps its original environment things will be fine.

Duncan Murdoch



More information about the R-devel mailing list