Displaying 1 result from an estimated 1 matches for "nummetricsselect".
Did you mean:
nummetricsselected
2006 Feb 23
2
Problem with List() Inside Function
I have a function declared thus.
FirstEigenvectorBoundary.Training <-
function(InputFileName='C:/Samples2/PT_Amp.txt',
Header=TRUE, Colour="red")
Inside the function, I have the following call
out<-list(x=Eigenvectors[2:(NumMetricsSelected+1),1],
y=-0.8, z=NumMetricsSelected);
NumMetricsSelected has the value 2 and Eigenvectors
has the following form
[,1] [,2] [,3]
[1,] 0.6404630 -0.2153989 0.7371638
[2,] -0.6081319 0.4439621 0.6580830
[3,] 0.4690231 0.8697706 -0.1533503
When I do it manually at the c...