signal processing (segmentation )

조회 수: 1 (최근 30일)
eman mohammad
eman mohammad 2019년 10월 20일
댓글: eman mohammad 2019년 10월 21일
After i segment a signal to 5 or 7 segments ...
how i can make these segments ( segments with different length) a one signal ??
  댓글 수: 3
Daniel M
Daniel M 2019년 10월 20일
If you want them sequentially, just put them back together using
combinedSignal = [sig1 sig2 sig3]; % etc... sigN
If you want them averaged, then you have to make them the same size by decimating, resampling, interpolating, extrapolating, etc. Depends what you want.
eman mohammad
eman mohammad 2019년 10월 21일
i sketched Exactly what i want to do ..
mt.png

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

채택된 답변

Daniel M
Daniel M 2019년 10월 21일
편집: Daniel M 2019년 10월 21일
If you want them sequentially, just put them back together using
combinedSignal = [sig1 sig2 sig3]; % etc... sigN
  댓글 수: 3
Daniel M
Daniel M 2019년 10월 21일
The try this
combinedSignal = [sig1(:); sig2(:); sig3(:)]';
eman mohammad
eman mohammad 2019년 10월 21일
really thank you Daniel
this what i need

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Signal Attributes and Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by