Return something that can hold more than one value, eg:

calculate <- function(x, y) {
        list(a=x+y, b=x-y)
}

David Hajage wrote:
> Thank you for your answer.
> 
> And what if my first function gives 2 results :
> 
> calculate <- function(x,y)
> {
>     a <- x + y
>      b <- x - y
> }
> 
> How can I use both a and b in a new function ?

______________________________________________
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to