How to augment a vector into another vector?

 Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 14 de Abr. de 2015
v1 = [0 1 2 3],
v2 = [0 1 2]
[a,b]=ndgrid(v1,v2)
out=[a(:) b(:)]

Más respuestas (1)

tdd4c1
tdd4c1 el 14 de Abr. de 2015
v3 = [repmat(v1',3,1) reshape(repmat(v2,4,1),1,[])']

Community Treasure Hunt

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

Start Hunting!

Translated by