필터 지우기
필터 지우기

How to take out a specific part of signal for processing?

조회 수: 6 (최근 30일)
JAI
JAI 2013년 4월 27일
I have a signal, size(x)=30000.I have to take out the signal details present in between the range 10000 to 20000 and subject them for further signal processing techniques.How can i do this??

채택된 답변

Wayne King
Wayne King 2013년 4월 27일
For example (I'll just create a noise signal to demonstrate)
x = randn(3e4,1);
xnew = x(1e4:2e4);
xnew is the signal containing the elements you want.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Signal Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by