[Rd] How to create a function calling two functions with unknown number of parameters?

2008-04-05 Thread ZT2008
... can be used to represent unknown number of parameters passed into a function. For example, I write a function g. g calls another function f1. For example f1 could be different random number generation function. when f1=rnorm(), it has 3 parameters n, mean and standard deviation. when

Re: [Rd] How to create a function calling two functions with unknown number of parameters?

2008-04-05 Thread Vincent Goulet
Le ven. 4 avr. à 18:03, ZT2008 a écrit : ... can be used to represent unknown number of parameters passed into a function. For example, I write a function g. g calls another function f1. For example f1 could be different random number generation function. when f1=rnorm(), it has 3

Re: [Rd] How to create a function calling two functions with unknown number of parameters?

2008-04-05 Thread Uwe Ligges
ZT2008 wrote: ... can be used to represent unknown number of parameters passed into a function. For example, I write a function g. g calls another function f1. For example f1 could be different random number generation function. when f1=rnorm(), it has 3 parameters n, mean and