Displaying 5 results from an estimated 5 matches for "eigenvals".
Did you mean:
eigenval
2003 Nov 09
1
weird behaviour of eigen()
I'm using R 1.7.1 under linux redhat
it seems that the eigen values produced by eigen() do not follow
a consistant order; I mean either ascending or discending
e.g
for one system:
eigenV<-eigen(V)
> print(eigenV$values)
[1] -7.706828e+13 -4.702980e+13 -3.267579e+13 -1.701297e+13
-8.041677e+12
[6] -5.707311e+12 -5.053941e+12 -4.774652e+12 -4.280423e+12
-3.798905e+12
2008 Jun 21
1
converting an R function into VBA
Hi everyone,
I want to convert an R function into VBA for calculating the eigenvectors and eigenvalues of a matrix using the "Power Method". The function is:
PowerMethod <- function(x, tolerance) {
my.mat <- var(x[,-1], na.method="available")
matSize <- dim(my.mat)[1]
eigenVec <- matrix(NA, nrow=matSize, ncol=matSize)
eigenVal <- rep(NA,
1998 Dec 01
1
Benchmark
Hello:
I modified benchmark used in
http://www.informatik.uni-frankfurt.de/~stst/benchspl.txt now the attached
code will work with R, except for last test for some reason (Sorry ran out
of time to play with this).
Immediate problem is that R does not show fraction of seconds. So, that
kinda makes comparison some what hard. I also looked at memory and CPU usage
on NT console. R seems to go
1999 Mar 12
0
PCA centered
I tried make a pca analysis with R. For this propose i need centered rows and
columns. I make this using the function princomp:
> zz<-princomp(x,cor=TRUE)
When i do it each column have mean=0 and standard deviation=1.
But i have this problem: the total inertia, sum of Eigenval., dont is =
=number of columns * 1= sum of total standard deviation
Why? It's a bug in
2007 Jul 04
3
working with matrix
I am new in R and I want to solve this problem;
I have a matrix X (with n-rows and p-colums) my problem is to obtain the products of the vectors of rows and print out only the maximum value and identify the row that gives the maximum value. Thanks
Oyeyemi, G.M
---------------------------------
Don't pick lemons.
[[alternative HTML version deleted]]