How to augment a vector into another vector?

Muhammad Sardar Khan · Mar 20, 2023 · 1.9K views
Question
v1 = [0 1 2 3], v2 = [0 1 2] the resultant v3 =[0 0; 1 0; 2 0; 3 0; 0 1; 1 1; 2 1; 3 1; 0 2; 1 2; 2 2; 3 2]  
Expert Answer
Profile picture of Kshitij Singh
Kshitij Singh PhD Expert
Answered Aug 18, 2026
v1 = [0 1 2 3], 
v2 = [0 1 2]
[a,b]=ndgrid(v1,v2)
out=[a(:) b(:)]

 

Have a different question? Ask here

Get a Free Consultation or a Sample Assignment Review!