Tagged Questions

The eigenvalue is the factor by which the eigenvector is scaled when multiplied by the matrix.

learn more… | top users | synonyms

11
votes
6answers
4k views

How expensive is it to compute the eigenvalues of a matrix?

How expensive is it to compute the eigenvalues of a matrix? What is the complexity of the best algorithms? How long might it take in practice if I have a 1000x1000 matrix? I assume it helps if the ...
10
votes
2answers
443 views

Python eigenvalue computations run much slower than those of MATLAB on my computer. Why?

I would like to compute the eigenvalues of large-ish matrices (about 1000x1000) using Python 2.6.5. I have been unable to do so quickly. I have not found any other threads addressing this question. ...
8
votes
5answers
3k views

Singular Value Decomposition (SVD) in PHP

I would like to implement Singular Value Decomposition (SVD) in PHP. I know that there are several external libraries which could do this for me. But I have two questions concerning PHP, though: 1) Do ...
8
votes
7answers
4k views

how to implement eigenvalue calculation with MapReduce/Hadoop?

It is possible because PageRank was a form of eigenvalue and that is why MapReduce introduced. But there seems problems in actual implementation, such as every slave computer have to maintain a copy ...
6
votes
5answers
241 views

What is the fastest way to calculate first two principal components in R?

I am using princomp in R to perform PCA. My data matrix is huge (10K x 10K with each value up to 4 decimal points). It takes ~3.5 hours and ~6.5 GB of Physical memory on a Xeon 2.27 GHz processor. ...
6
votes
2answers
530 views

What's the best small C++ package to compute the largest eigenvalue of a matrix?

I need to compute the largest eigenvalue of a (sparse) matrix. I implemented the power iteration method, but it is too slow to converge, so I'd like to use a package for it. Does anyone have a ...
5
votes
2answers
363 views

whats the fastest way to find eigenvalues/vectors in python?

Currently im using numpy which does the job. But, as i'm dealing with matrices with several thousands of rows/columns and later this figure will go up to tens of thousands, i was wondering if there ...
4
votes
2answers
269 views

Issue with computing eigenvalues using mathematica

Basically I'm trying to find the eigenvalues for matrix, and it takes about 12 hours. When it finishes, it says it couldn't find all the eigenvectors (actually barely any), and I'm skeptical about the ...
4
votes
1answer
159 views

Any free ebooks or references on eigenvectors used in image processing?

I've been using wikipedia and random google searches to find information on eigenvectors, principal component analysis etc. and their application to image processing such as text-detection, eigenfaces ...
4
votes
3answers
2k views

Eigenvalues in MATLAB

In MATLAB when I run the command [V,D] = eig(a) for a symmetric matrix the largest eigenvalue (and its associated vector) is located in last column. However, when I run it with a non-symmetric matrix ...
4
votes
5answers
858 views

Tool to diagonalize large matrices

I want to compute a diffusion kernel, which involves taking exp(b*A) where A is a large matrix. In order to play with values of b, I'd like to diagonalize A (so that exp(A) runs quickly). My matrix ...
3
votes
3answers
144 views

Solving Eigen System in c#?

Do you know of a good library/way that I can use to solve an eigen system in c#? My data is 2D/3D and I want to get direction and length of first and second eigen vectors to evaluate how my data is ...
3
votes
4answers
489 views

Sorting eigenvectors by their eigenvalues (associated sorting)

I have an unsorted vector of eigenvalues and a related matrix of eigenvectors. I'd like to sort the columns of the matrix with respect to the sorted set of eigenvalues. (e.g., if eigenvalue[3] moves ...
2
votes
1answer
310 views

Python numpy compute first eigenvalue and eigenvector

I was wondering if there is a Python package, numpy or otherwise, that has a function that computes the first eigenvalue and eigenvector of a small matrix, say 2x2. I could use the linalg package in ...
2
votes
2answers
417 views

What is the difference between 'eig' and 'eigs'?

I've searched a lot for this but I can't find any answer about how the two methods 'eig' and 'eigs' differ. What is the difference between the eigenvalues and eigenvectors received from them?
2
votes
1answer
249 views

Eigen Transformations: Why do high eigenvalues indicate regions of text?

Many papers mention that text regions give rise to high eigenvalues calculated from the greylevel pixel values after the image has been divided into blocks of mxm matrices. Also that eigenvalues are a ...
2
votes
3answers
1k views

Java package for eigenvector/eigenvalues computation?

which java package do you recommend for computing eigenvectors/eigenvalues? I know about JMathTools and JAMA; do you have some pro/cons for these packages? Other suggestions?
2
votes
2answers
301 views

Numpy transpose multiplication problem

I tried to find the eigenvalues of a matrix multiplied by its transpose but I couldn't do it using numpy. testmatrix = numpy.array([[1,2],[3,4],[5,6],[7,8]]) prod = testmatrix * testmatrix.T print ...
2
votes
1answer
549 views

Eigenvalues and Eigenvectors Computation in Intel Math Kernel

Does any know what is the algorithm used for eigenvalues and eigenvectors computation in Intel Math Kernel library? From the link I can find is that it seems to use pdsyev algorithm, which uses QR ...
1
vote
1answer
125 views

calculate a volume from eigenvalues in R

I'm trying to write a bit of code that will allow for me to simply generate the volume of a sphere from 6 generated eigen values. So I have the data: PCoA1 PCoA2 PCoA3 PCoA4 PCoA5 PCoA6 3.2601 ...
1
vote
2answers
136 views

Generalized eigenvalue problem

I'm trying to convert a generalized eigenvalue problem into a normal eigenvalue calculation. I have this code: [V,D,flag] = eigs(A, T); Now I convert it into: A1 = inv(T)*A; [V1,D1,flag1] = ...
1
vote
3answers
301 views

Sort eigenvalue matrix with eigenvector matrix

I have N eigenvalues in column vector form. Thus there are N eigenvectors corresponding to these eigenvalues, forming an eigenvector matrix. Now, the problem I am working on requires me to sort the ...
1
vote
3answers
460 views

Eigenvector (Spectral) Decomposition

I am trying to find a program in C code that will allow me to compute a eigenvalue (spectral) decomposition for a square matrix. I am specifically trying to find code where the highest eigenvalue (and ...
0
votes
1answer
24 views

Computing N smallest eigenvalues of Sparse Matrix in Python

I'd like to find the N smallest eigenvalues of a sparse matrix in Python. I've tried using the scipy.sparse.linalg.eigen.arpack package, but it is very slow at computing the smallest eigenvalues. I ...
0
votes
0answers
10 views

Generalized eigenvalue for two matrices in OpenCV

Hello I am working on a project involving in face recognition for which I am using Linear Discriminant Analysis(LDA). LDA demands to find the generalized eigen vectors for the between class scatter ...
0
votes
1answer
16 views

PCA: mean center first or normalize first?

If I have a covariance matrix and I would like to perform PCA of a corresponding correlation matrix, should I mean-center the covariance matrix first and then standardize (dividing by std deviations) ...
0
votes
1answer
33 views

middle eigenvalue in numpy

How do I calculate the middle eigenvalue in numpy? Is this a correct way to do it? import numpy as np (1/a.ndim)*np.trace(a) a is a numpy matrix.
0
votes
1answer
85 views

Ordering of eigenvectors when calculating eigenvectors using LAPACK's ssteqr

I am using LAPACK's ssteqr function to calculate eigenvalues/eigenvectors. The documentation for ssteqr says that the eigenvalues are sorted "in ascending order". Is it reasonable to assume that the ...
0
votes
1answer
82 views

problem in finding eigenvectors of a matrix in MATLAB

I have a symmetric matrix with the elements A=[8.8191,0,1.0261; 0,3,0; 1.0261,0,3.1809]; I used the eig(A) function in MATLAB , the eigenvalues and eigenvectors are given : eigvect = 0.1736 ...
0
votes
1answer
251 views

Eigenvalue decomposition using MATLAB

I'm conducting dimensional reduction of a square matrix A. My issue now is that I have problem computing eigvalue decomposition of a 13000 x 13000 matrix A, i.e. [v d]=eigs(A). Because it's a sparse ...
0
votes
1answer
584 views

eigenvalues and eigenvectors using mkl lapack libraries in Fortran

I am trying to calculate the eigenvalues and eigenvectors of matrices of different sizes. I am using a piece of very simple Fortran90 code and I am compiling it linking to the appropriate Lapack ...
0
votes
1answer
323 views

Calculating eigenvectors/values of a 2x2 tensor

I'm implementing the system described within this paper, and I'm getting a little stuck. I only recently encountered tensors/eigenvalues etc so excuse me if this is a little simple! Given a 2x2 ...
0
votes
1answer
155 views

How do I determine eigenvalues in matlab?

Assume I have the model of a complex continuous system which consists of several differential equations as follows: f = 1/(ura235 + 2.43*plu239 + 2.679*plu241) d/dt ura236 = (.016*ura235 - ...
0
votes
1answer
442 views

How to calculate the eigenvector of a column stochastic matrix in C++

I have a column stochastic matrix A and want to solve the following equation in C++: Ax=x I am assuming that I need to find out an eigenvector x where eigenvalue is set to be 1(right?) but I ...
0
votes
2answers
610 views

Finding eigenvectors of covariance matrix to create 3D bounding sphere

I'm currently in the process of writing a function to find an "exact" bounding-sphere for a set of points in 3D space. I think I have a decent understanding of the process so far, but I've gotten ...
0
votes
0answers
453 views

Eigenvector (Spectral) Decomposition (w/ordered eigenvalues and eigenvectors) [closed]

Possible Duplicate: Eigenvector (Spectral) Decomposition I am trying to find a program in C code that will allow me to compute a eigenvalue (spectral) decomposition for a square matrix. I ...
-1
votes
1answer
54 views

Finding the smallest negative eigenvalue if the eigenvalues are complex

I want find in matlab ,the smallest negative eigen value,from complex eigenvalues ,of a squaure matrix (5,5) with all the entries of the matrix are complex .The answer should be real value.So how can ...
-2
votes
2answers
350 views

Want eigenvalues calculation code in java for 3x3 matrix [closed]

please provide the code for calculating eigenvalues for any 3x3 matrix in java Thank you in advance