Displaying 1 result from an estimated 1 matches for "a_comp".
Did you mean:
a_cmp
2005 Apr 22
1
Beginner in R
...b <- another_value
my_struct$c <- one_more_value
and a function with two args : the first is a instance of the structure,
and the second is any component of the structure (here $a, $b or $c) and
the function will do some transformations on this component :
my_func <- function(a_struct, a_comp)
{
a_comp <- transformationFunct(a_comp)
a_result <- someComputation(a_struct)
return(a_result)
}
In reallity, the structure have lot of components (+/- 40) who are input
parameters for a time discret model and this function is to do selective
sensitivity analysis....