필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How to solve the problem of noise using weighted values?

조회 수: 2 (최근 30일)
ANANTA BIJOY BHADRA
ANANTA BIJOY BHADRA 2023년 7월 5일
마감: John D'Errico 2023년 7월 19일
I have a voltage signal for 11 cycles. Each cycles has 32 samples of data. I was trying to reconstruct the signal using the following equation.I have to find the coefficients .
where is the time of the downsampled data. I tried to solve the problem by using the follwoing equation.
Where, X is the array of the coefficinets, A is the matrix at follwoing form . Y is the values of the voltage samples. is the transpose of matrix A and W is the weighted values. I tried to use the backslash command which results in x=A\Y. The results are accurate. However, I need to implement the weighted equation given in equation (2) to solve for X. I tried every command but it did not work.
  댓글 수: 1
Ashutosh
Ashutosh 2023년 7월 6일
Hey, have you tried something like:
mat = A' * W * A;
X = inv(mat) * A' * W * Y;
That is, using the inv() function of MATLAB to find the inverse?

답변 (0개)

이 질문은 마감되었습니다.

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by