Azzera filtri
Azzera filtri

signal processing (segmentation )

1 visualizzazione (ultimi 30 giorni)
eman mohammad
eman mohammad il 20 Ott 2019
Commentato: eman mohammad il 21 Ott 2019
After i segment a signal to 5 or 7 segments ...
how i can make these segments ( segments with different length) a one signal ??
  3 Commenti
Daniel M
Daniel M il 20 Ott 2019
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 il 21 Ott 2019
i sketched Exactly what i want to do ..
mt.png

Accedi per commentare.

Risposta accettata

Daniel M
Daniel M il 21 Ott 2019
Modificato: Daniel M il 21 Ott 2019
If you want them sequentially, just put them back together using
combinedSignal = [sig1 sig2 sig3]; % etc... sigN
  3 Commenti
Daniel M
Daniel M il 21 Ott 2019
The try this
combinedSignal = [sig1(:); sig2(:); sig3(:)]';
eman mohammad
eman mohammad il 21 Ott 2019
really thank you Daniel
this what i need

Accedi per commentare.

Più risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by