filtering in frequency domain
    조회 수: 5 (최근 30일)
  
       이전 댓글 표시
    
I have signal say 'data'; i want to cutt off all the frequency above 25 Hz in this signal. what should i do?
댓글 수: 0
채택된 답변
  Honglei Chen
    
      
 2014년 7월 24일
        Your question is incomplete. You also need to know the sampling rate of the signal. Once you have the sampling rate, together with the cutoff frequency, you can design a filter using, say butter function and then use filter function to filter the signal.
댓글 수: 2
  Honglei Chen
    
      
 2014년 7월 24일
				so your sampling rate is 100 Hz. In that case, you can design a 4th-order (this is something you can choose but 4 is a good value to start with) Butterworth filter and filter signal x like
[b,a] = butter(4,25/(100/2)); 
filter(b,a,x)
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Filter Design에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

