What are free variables? Identify free variable/s from the following code snippet h <-function(x, y = NULL, d = 3L) { z
Posted: Tue Jul 12, 2022 8:06 am
What are free variables? Identify free variable/s from the following code snippet h <-function(x, y = NULL, d = 3L) { z <- cbind(x, d) if(!is.null(y)) else z<-z+y z<-z+f g<-x+y/z if(d ==3L) 8 } return(g) 8<-g+10