search for: pfevn

Displaying 1 result from an estimated 1 matches for "pfevn".

Did you mean: pfern
2012 Jul 09
3
returning multiple values
I am running a program which has an output containing four vectors named meanfevs, meanfevns, pfevs, pfevns. I wish to return all four and be able to access them later. I used the command return(list(a=meanfevs,b=meanfevns,c=pfevs,d=pfevns)) it did give me the ouput. However the values did not get stored in the vectors a,b,c and d and i am not being able to access them later by just calling a/b/c/d. Ple...