Which is the simplest way to create neighbourhood pairs?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
from [1,2,3,7,8,9] to [1 2; 2 3; 3 7; 7 8; 8 9]
0 comentarios
Respuestas (2)
Radha Krishna Maddukuri
el 24 de Abr. de 2015
Editada: Radha Krishna Maddukuri
el 24 de Abr. de 2015
I hope this helps.
B = zeros(numel(A)-1,2);
for i =1:1:(numel(A)-1)
B(i,:) = [A(i) A(i+1)];
end
0 comentarios
Andrei Bobrov
el 24 de Abr. de 2015
Editada: Andrei Bobrov
el 24 de Abr. de 2015
hankel(a(1:end-1),a(end-1:end))
or
[a(1:end-1)', a(1:end-1)'+1]
or
a1 = a(1:end-1)
bsxfun(@plus,a1(:),[0 1])
0 comentarios
Ver también
Categorías
Más información sobre Numeric Types en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!