After i segment a signal to 5 or 7 segments ...
how i can make these segments ( segments with different length) a one signal ??

3 件のコメント

KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 10 月 20 日
Can you elaborate more with examples?
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 日

1 投票

If you want them sequentially, just put them back together using
combinedSignal = [sig1 sig2 sig3]; % etc... sigN

3 件のコメント

eman mohammad
eman mohammad 2019 年 10 月 21 日
編集済み: eman mohammad 2019 年 10 月 21 日
Thanks Daniel
but this solution does not make the segments as one signal
I get 3 signals when plot the combinedSignal :
**what i try to do is removing some segments of the raw signal and then redefin the rest segments as one signal .
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 件)

タグ

質問済み:

2019 年 10 月 20 日

コメント済み:

2019 年 10 月 21 日

Community Treasure Hunt

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

Start Hunting!

Translated by