필터 지우기
필터 지우기

Best filter

조회 수: 4 (최근 30일)
j_solar
j_solar 2011년 11월 17일
Hello everybody,
I am processing a large number of photovoltaic module I-V curves and due to the measuring equipment they normally present a lot of noise, although the shape is more or less visible. However, for processing the curve I need to eliminate the noise. What is in your opinion the best filter to use?
thank you all
  댓글 수: 2
j_solar
j_solar 2011년 11월 17일
I would like to upload the curve and the file data so you could have a look but I don't see an option for it. ¿can you help? ty
Walter Roberson
Walter Roberson 2011년 11월 19일
http://www.mathworks.com/matlabcentral/answers/7924-where-can-i-upload-images-and-files-for-use-on-matlab-answers
Then you would paste the URL here.

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

채택된 답변

Ajay Kumar
Ajay Kumar 2011년 11월 18일
It depends on what frequencies you want to get rid off.
View the FFT of the signal. Find out where you have the noise.
Easiest way: Type 'fdatool' in your command window.
You can design your own filter to your own specs. The higher the order the sharper the cut off and the better the characteristics.
You can generate the coefficients and use it in:
Y=filter(B,A,X);
Where,
X- Input Signal
Y- Filtered Output
B- Denominator coeff
A- Numerator Coeff

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Digital Filter Analysis에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by