Borrar filtros
Borrar filtros

How do I create a vector of the average of consecutive elements of another vector (without using a loop)?

28 visualizaciones (últimos 30 días)
Say, I have a vector A=[2 4 6 8 10]. Is there any way I can create a vector of the average of consecutive elements of A, i.e. B=[3 5 7 9] without using a loop? Is there any matlab function to do that? Thanks in advance.

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 10 de Oct. de 2013
Editada: Azzi Abdelmalek el 10 de Oct. de 2013
A=[2 4 6 8 10]
B=mean([A(1:end-1);A(2:end)])

Más respuestas (2)

Jan
Jan el 10 de Oct. de 2013
Editada: Jan el 10 de Oct. de 2013
This is simpler and occupies less temporary memory than Azzi's approach:
A = [2 4 6 8 10];
B = 0.5 * (A(1:end-1) + A(2:end))

Matthew Crema
Matthew Crema el 10 de Oct. de 2013
One way:
A=[2 4 6 8 10];
foo = conv([1 1], A)/2;
B = foo(2:end-1)
B =
3 5 7 9
-Matt
  5 comentarios
Jan
Jan el 11 de Oct. de 2013
The speed argument might change, when the data exceed a certain size.

Iniciar sesión para comentar.

Categorías

Más información sobre Logical 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