Effacer les filtres
Effacer les filtres

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

6 vues (au cours des 30 derniers jours)
JAI
JAI le 27 Avr 2013
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??

Réponse acceptée

Wayne King
Wayne King le 27 Avr 2013
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.

Plus de réponses (0)

Catégories

En savoir plus sur Signal Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by