SVD

조회 수: 17 (최근 30일)
Shrinivas Gombi
Shrinivas Gombi 2011년 7월 13일
In MATLAB,if we take the svd(X)of a column matrix,we r supposed to get the product of three matrices after decomposition.I want to take the pseudo inverse of this matrix pinv(svd(X)).but after svd I am getting a single number instead a matrix.Pl help me why like this.I am reqd to maultiply another column matrix to this inverse matrix to get the answer. Ex: Force F = pinv(svd(FRF))*A, actually I am expecting pinv(svd(FRF)) should be a 1x3 size and Acceleration matrix A should be of 3x1.Kindly help me to resolve this Shrinivas Gombi

답변 (2개)

Walter Roberson
Walter Roberson 2011년 7월 13일
svd(X) by itself returns a vector of singular values. The vector will be a column vector of length min(size(X)) . When X is a column vector, min(size(X)) will be 1, so svd(X) will return a scalar.
If you want to be working with matrices, you should probably be using the multi-output version of svd,
[U,S,V] = svd(X);
  댓글 수: 2
Shrinivas Gombi
Shrinivas Gombi 2011년 7월 14일
Dear SIr, When I plot FRF vs FRequency curves I can locate the no. of natural frequencies.I want to apply svd to my matrix 'FRF'in the equation Force F = pinv(svd(FRF))*A,at specified values of these natural frequencies Ex: When i= 110,245,486 etc. I want to apply pinv(svd(FRF(i)))& for other values of'i' I dont.FRF(i) is of 30000x1,i.e i= 0 to 30000.Pl let me know how to write the MATLAB steps.
Walter Roberson
Walter Roberson 2011년 7월 14일
[u s v] = svd(FRF(i));
F = pinv(s);
Note: this will be equivalent to
F = zeros(1,length(i));
s = svd(FRF(i));
if s ~= 0; F(1) = 1/s; end;

댓글을 달려면 로그인하십시오.


Krishna Kumar
Krishna Kumar 2011년 7월 13일
When you do svd of a column matrix, you get 3 matrices [u s v]=svd(X) if X is nx1 vector, u is n*n,s is n*1 and v is 1*1 now if use svd(X) without output args you get 1x1 value, i.e the first entry in s. The remaining entries in 's' are actually zeros. Hope this could help you find a way out.
  댓글 수: 1
Shrinivas Gombi
Shrinivas Gombi 2011년 7월 14일
Dear SIr, When I plot FRF vs FRequency curves I can locate the no. of natural frequencies.I want to apply svd to my matrix 'FRF'in the equation Force F = pinv(svd(FRF))*A,at specified values of these natural frequencies Ex: When i= 110,245,486 etc. I want to apply pinv(svd(FRF(i)))& for other values of'i' I dont.FRF(i) is of 30000x1,i.e i= 0 to 30000.Pl let me know how to write the MATLAB steps.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Scatter Plots에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by