The eigenvectors of a square matrix are the non-zero vectors that, after being multiplied by the matrix, remain parallel to the original vector
0
votes
1answer
23 views
Find eigenvector for a given eigenvalue R
I have a matrix 100x100 and I found it's biggest eigenvalue. Now I need to find eigenvector corresponding to this eigenvalue. How can I do this?
-3
votes
1answer
24 views
Two eigenvectors define the same principal component [closed]
Can anybody help me with the following question:
"Explain how two eigenvectors of the same length can define the same Principal Component."
Thanks!
0
votes
0answers
23 views
compute eigenvectors of big matrix
I have an 6000*16000 matrix D
I need to compute matrix C formed by the first leigenvectors with the smallest
eigenvalues D ( I don't choose the right l until now)
what is the faster way to compute ...
0
votes
0answers
31 views
Computing inner eigenvalues and eigenvectors using Arnoldi method on GPUs
How to use the implementation of the Arnoldi method in CUSP to compute a few inner eigenvalues and eigenvectors of a symmetric dense matrix using CUDA?
For my specific problem the size of the matrix ...
0
votes
0answers
16 views
How can I use GotoBlas library in VS2010 C++ on Windows 7?
I downloaded GotoBLAS library at http://www.tacc.utexas.edu/tacc-projects/gotoblas2/ and I want to use syev() function to calculate eigenvectors and eigenvalues of a matrix. But I'm a newbie with ...
1
vote
1answer
98 views
A function for calculating the eigenvalues of a matrix in R
I want to write a function like eigen() to calculating eigenvalues and eigenvectors of an arbitary matrix. I wrote the following codes for calculation of eigenvalues and I need a function or method to ...
-1
votes
0answers
71 views
kernel PCA in R using kernlab [closed]
I am attempting to use the kernel PCA features in kernlab but am having trouble understanding the output. In particular, it's unclear what scale the results are in when I try to project the original ...
0
votes
0answers
38 views
How to draw eigenvectors in opencv?
The question is:
how can i draw the eigenvectors relative to a corner?
I already calculated the eigen(values/vectors) using cornerEigenValsAndVecs,
and the corners using goodFeaturesToTrack.(with ...
1
vote
1answer
86 views
Is scipy.linalg.eig giving the correct left eigenvectors?
I have a question regarding the way how scipy.linalg.eig computes left and right eigenvectors. Maybe I misunderstood everything, but things seem not to be right to me...
From the beginning. To get ...
4
votes
3answers
194 views
spectral clustering
First off I must say that I'm new to matlab (and to this site...) , so please excuse my ignorance.
I'm trying to write a function in matlab that will use Spectral Clustering to split a set of points ...
0
votes
1answer
117 views
Obtaining Least square adjusted single line by intersecting many 3D planes
I am working with many 3D planes and looking for a Least square solution for below case.
IF I am having many number of 3D planes knowing only one point and the
normal vector (for eg. O1 and N1), ...
1
vote
0answers
41 views
Why is my custom function not outputting both variables? [closed]
I'm almost ashamed to post this question, but I honestly can't figure out why. I'm probably overlooking something small and incredibly obvious.
Here is my code!
function [e,v] = MaxEig( A )
%Finds ...
0
votes
2answers
339 views
How to obtain right eigenvectors of matrix in R?
Edition : the problem with my question was that I've tried to find matrix S form equation 8 but this equation have error.
How to directly obtain right eigenvectors of matrix in R ? 'eigen()' gives ...
2
votes
1answer
92 views
Largest Eigenvector and possible Scipy weirdness
Not sure whether this is a bug in the package or due to some other cause, but here we go.
I'm using the following package to find the largest eigenvalue and its corresponding eigenvector over a ...
0
votes
1answer
223 views
Calculating eigenvector centrality using NetworkX
I'm using the NetworkX library to work with some small- to medium-sized unweighted, unsigned, directed graphs representing usage of a Web 2.0 site (smallest graph: less than two dozen nodes, largest: ...
1
vote
1answer
156 views
SciPy - Compute eigenvector for particular eigenvalue in symmetric matrix
I have a symmetric matrix (adjacency matrix for an undirected graph) and I have a particular eigenvalue (the maximum eigenvalue) and I want the eigenvector associated with it (left or right, either ...
1
vote
1answer
71 views
eigendecomposition error tolerance
I have a very simple question. It is related to the computational tolerance error.
Let me do (see at the end) the eigendecomposition of a matrix A in eigenvector V and diagonal eigenvalues D, and ...
1
vote
2answers
207 views
Eigenvector Centrality Algorithm/Pseudocode
I was wondering if anybody could point me in the direction of some eigenvector centrality pseudocode, or an algorithm (for social network analysis). I've already bounced around Wikipedia and Googled ...
2
votes
2answers
155 views
How to get the integer eigenvectors of a Numpy matrix?
I have a Numpy matrix, for example, numpy.matrix([[-1, 2],[1, -2]], dtype='int'). I want to get its integer-valued eigenvectors, if any; for example, numpy.array([[-1], [1]]) for the above matrix. ...
1
vote
1answer
960 views
Simple Lanczos algorithm code to obtain eigenvalues and eigenvectors of a symmetric matrix
I would like to write a simple program (in C) using Lanczos algorithm. I came across a Matlab example which helped me to understand a bit further the algorithm, however from this piece of code I can't ...
0
votes
1answer
131 views
Library for Eigenvector and Eigenvalue computation in C Sharp
I am working with Face Recognition. I need to compute Eigenvector and Eigenvalue from a matrix. I am using C sharp . Is there any library for Eigenvector and Eigenvalue computation. I think Emgu CV ...
0
votes
3answers
174 views
Eigenvalue and the corresponding EigenVector in Java
Given a Matrix, I'm interested in the Eigenvalues and the corresponding Eigenvector.
Using Jama, I can get the Eigenvalues and the Eigenvectors, yet the correlation between the two is not defined: I ...
4
votes
1answer
114 views
Computing Eigen Values and Eigen Vector using IronPython2.7
This might be a frequent problem for IronPython users. But I am new to python.
I wish to compute Eigen Value and Eigen vector of around 50x50 matrix using IronPython2.7
I explored possibilities of ...
0
votes
1answer
171 views
pca - which eigenvector corresponds to which eigenvalue
I am to do as follows:
I have a set of Vektors v1-vn
For these, I need the covariance matrix (which I get while doing a pca).
I also need the eigenvalues and eigenvectors of the covariance matrix.
The ...
0
votes
1answer
131 views
compute eigenvector using a dominant eigenvalue
I want to ask some question about eigenvector centrality.
I have to compute a eigenvalue using power iteration. This is my code to compute eigenvalue :
v=rand(165,1);
for k=1:5
w = ...
2
votes
1answer
275 views
Matlab symbolic eigenvectors
I am trying to calculate the symbolic eigenvalues and vectors of matrices of the form
[ a, c, 0]
[ c, b, e]
[ 0, e, f]
in matlab (replace a,b,c etc with some expressions containing x, y, z). When I ...
2
votes
1answer
297 views
Cryptic matlab error when computing eigs
I am trying to find the 2 eignevectors of the 2 smallest eigenvalues of a laplacian. I do this by
[v,c]=eigs(L,M,2,'SM');
Where L is the lapalcian and M is the mass matrix.
As a result I get the ...
0
votes
1answer
166 views
What is the significance of covariance matrix constructed through term document matrix in PCA?
I'm working on neural networks and for reducing the dimensions of the term-document matrix constructed through documents and the various terms in it bearing the values of tf-idf , I need to apply PCA. ...
2
votes
0answers
325 views
PCA source code in OpenCV library
the following API function is the source code on PCA in OpenCV library:
static CvStatus CV_STDCALL icvCalcEigenObjects_8u32fR( int nObjects, void* input, int objStep,
void* ...
1
vote
1answer
90 views
scipy generalized eigenproblem with positive semidefinite
Hi, guys!!!
I want to compute generalized eigendecomposition of the form:
Lf = lambda Af
by using scipy.sparse.linalg.eigs function, but get this error:
...
0
votes
3answers
291 views
Could we get different solutions for eigenVectors from a matrix?
My purpose is to find a eigenvectors of a matrix. In matlab, there is a [V,D] = eig(M ) to get the eigenVectors of matrix by using: [V,D] = eig(M ). Alternatively I used the website wolframealpha ...
3
votes
2answers
118 views
Search only for the first (couple of) eigenvalue and eigenvector of a matrix - MATLAB
I would like to solve an eigenvalue problem for a PDE by a finite difference method. Therefore my problem is reduced to a matrix eigenvalue problem. The thing is that the size of this matrix will be ...
-1
votes
2answers
401 views
Program to find eigen values and eigen vector for a nXn matrix? [closed]
I would like to know how to find the eigenvalues and eigen vectors for a real nXn matrix in c, and how to solve the equation for finding the determinant
0
votes
0answers
144 views
python: numpy.linalg.eig help dcoumentation: eigenvectors/values
I'm reviewing some eigenvector/value stuff using numpy.
A part of help(numpy.linalg.eig) tells me that:
The number `w` is an eigenvalue of `a` if there exists a vector `v` such that
``dot(a,v) = w ...
2
votes
5answers
327 views
Copying upper MatrixXd to lower MatrixXd (Eigen3) C++ library
I've got a lower triangular MatrixXd and I want to copy its lower values to the upper side as it'll become a symmetric matrix. How can I do it?
So far I've done:
MatrixXd m(n,n);
.....
//do ...
0
votes
0answers
171 views
How to calculate the eigenvalues and eigenvectors in Xcode
I want to calculate the eigenvalues and eigenvectors of a symmetric matrix. I found online that I need to add the accelerate framework and include it
#include <Accelerate/Accelerate.h>
And ...
2
votes
1answer
664 views
Mapping array back to an existing Eigen matrix
I want to map an array of double to an existing MatrixXd structure. So far I've managed to map the Eigen matrix to a simple array, but I can't find the way to do it back.
void foo(MatrixXd matrix, ...
0
votes
2answers
487 views
How do I find out eigenvectors corresponding to a particular eigenvalue of a matrix?
How do I find out eigenvectors corresponding to a particular eigenvalue?
I have a stochastic matrix(P), one of the eigenvalues of which is 1. I need to find the eigenvector corresponding to the ...
3
votes
1answer
370 views
Python eig for generalized eigenvalue does not return correct eigenvectors
Trying to use scipy's linalg.eig to solve a generalized eigenvalue problem. I then check the solution I get and it does not seem like proper eigenvectors were returned. Also, the documentation ...
1
vote
1answer
154 views
why does the Eigen vectors calulated from accelerate framework differ in sign?
Hi for the following 9x9 input matrix
6.522752 0.985874 0.000000 0.000000 0.000000 0.000000 -1.239167 1.833633 1.542076
0.985874 5.591528 0.000000 0.000000 0.000000 0.000000 1.833633 6.220998 ...
3
votes
1answer
462 views
Eigenvector and Eigenvalue of 8 X 8 matrix
I have a 8 x 8 matrix of floating point numbers and need to calculate eigenvector and eigenvalue from it. This is for feature reduction using PCA (Principal Component Analysis) and is one hell of a ...
1
vote
1answer
238 views
complex eigenvalues in opencv
Any way of computing in opencv the eigenvalues and eigenvectors of an asymmetric matrix?
8
votes
2answers
6k views
OpenCV/JavaCV face recognition - Very similar confidence values
I will explain what I am trying to do, as it seems to be relevant in order to understand my question.
I am currently trying to do face recognition of people that step in front of a camera, based on ...
0
votes
2answers
353 views
eigenvectors & values to plot 2d stress vector field
I intended to plot a 2d stress field. What I have in hand are 2 eigenvectors and the respective 2 eigenvalues of 2D stress tensor field for all the particles in system. I am afraid that I could not ...
15
votes
1answer
2k views
C++ eigenvalue/vector decomposition, only need first n vectors fast
I have a ~3000x3000 covariance-alike matrix on which I compute the eigenvalue-eigenvector decomposition (it's a OpenCV matrix, and I use cv::eigen() to get the job done).
However, I actually only ...
0
votes
1answer
155 views
python finding eigen values and eigen vectors
I have a graph laplacian, for which I need to find out the largest 'k' eigen values and eigen vectors. I am using something like this :-
#L= laplacian matrix.
eigVal,eigVectors = eigsh(L, k, ...
1
vote
0answers
94 views
How to Speed Up EigenBackground Calculation?
I'm trying an optimization of this algorithm for Adaptive Background Detection with Moving Camera Video:
http://www.springerlink.com/content/4j2m3885r3133202/fulltext.pdf
This algorithm speed up the ...
0
votes
0answers
1k views
Calculating Eigenvectors and Eigenvalues for Principal Component Analysis
I am trying to perform a Principal Component Analysis of some 3D scans however I am stuck when calculating and working with the eigenvalues and eigenvectors.
The scans are in a .obj file format.
...
1
vote
2answers
141 views
does matlab cache solutions for eigs
I seem to be getting different performance results when using eigs. On the same matrix, calling
[c, v] = eigs(A, 2, 'sm');
somtimes takes 30 seconds and sometimes 2 seconds.
I need to know whether ...
1
vote
2answers
497 views
complex eigen values in PCA calculation
Iam trying to calculate PCA of a matrix.
Sometimes the resulting eigen values/vectors are complex values so when trying to project a point to a lower dimension plan by multiplying the eigen vector ...



