필터 지우기
필터 지우기

SVD reconstruction of waveforms

조회 수: 1 (최근 30일)
Kim
Kim 2012년 7월 23일
I have carried out SVD on 13 different waveforms and formed a matrix of 13 column vectors. Now my job is to multiply the first few modes or columns to reconstruct the waveforms. Can anyone help me with it please.

답변 (1개)

Star Strider
Star Strider 2012년 7월 23일
Is this what you want to do?
a = [0:0.1:6*pi]';
z1 = [sin(a) sin(3*a) sin(5*a) sin(7*a)];
z2 = z1(:,1);
for k1 = 1:size(z1,2)-1
z2 = z2.*z1(:,k1+1);
end
figure(1)
plot(a, z1, ':')
hold on
plot(a, z2, '-r')
hold off
grid

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by