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 Center および File ExchangeGet Started with DSP System Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by