Displaying 1 result from an estimated 1 matches for "rueslt".
Did you mean:
reuslt
2009 Feb 04
3
Passing data among multiple instances
...running a function "test1"
test1 <- function (x1)
{
x2 <- sin(x1)
return(x2)
}
In instance B, another function "test2"
test2 <- function (x2)
{
x3 <- cos(x2)
return(x3)
}
where " test2" receives the input from "test1"'s rueslt. "test1" and
"test2" could be much more complex. They may take one minute each.
Now the whole procedure is instance A is running, while instance B is
waiting for the result of instance A. Once instance A is done (instance A
goes to run with new data), instance B should detect...