Borrar filtros
Borrar filtros

CONVOLUTION OF A SIGNAL WITH WINDOW FUNCTION

15 visualizaciones (últimos 30 días)
lamawal Jonathan
lamawal Jonathan el 1 de Dic. de 2014
Comentada: lamawal Jonathan el 4 de Dic. de 2014
hello everybody! pls, help, HOW DO I PERFORM CONVOLUTION ON A SIGNAL WITH WINDOW FUNCTION OF WINDOW LENGTH 10msc.
  1 comentario
lamawal Jonathan
lamawal Jonathan el 1 de Dic. de 2014
x= my signal
L= 80;%my window length of 10msec corresponds to 80 data point
w= ones(L,1); % using a rectangular window
conv_Signal = x * w; %convolution operation. but the output display the following error message Error using * Inner matrix dimensions must agree.
Error in AiAssignment (line 47) conv_Signal = x * w;. pls, can anyone help. i can't figure the problem with my code. thanks

Iniciar sesión para comentar.

Respuesta aceptada

Image Analyst
Image Analyst el 1 de Dic. de 2014
Editada: Image Analyst el 1 de Dic. de 2014
star or star star is the convolution operator only in textbooks. In MATLAB you call a function to do convolution. Do this:
conv_Signal = conv(x, w, 'same');
You can also use 'valid' or 'full' depending on how you want to handle edge effects. If you want the moving average rather than the straight, standard convolution, use w/L as the second argument.
  2 comentarios
lamawal Jonathan
lamawal Jonathan el 2 de Dic. de 2014
thanks man this was really helpful. i'm learning matlab for the first time so i'm yet to get use to most of the basics.
lamawal Jonathan
lamawal Jonathan el 4 de Dic. de 2014
Hello! pls, can u help? i need some assistance with K-fold validation. i have three data set("EL", "MK", "Z0") each of which is a 1X1 matrix of length 20 data point. out of the 20 data, the first 10 data is silence audio and the last 10 data is speech audio. my required task is to perform K-fold validation with K=10. i'm further advised to split the data set into training and test sets keeping the training set balanced, with half "Speech" and half "Silence" audio samples. how can i approach this? any help will be deeply appreciated. thanks

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Signal Generation and Preprocessing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by