How do I add two columns to a matrix in ascending order?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I need a matrix which numbers ascend in the following way:
If I have the columns:
x=[1 2 3]
y=[4 5 6]
I want the matrix to be like:
A=[1 4
1 5
1 6
2 4
2 5
2 6
3 4
3 5
3 6]
I hope someone can help me with this.
0 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 11 Jun. 2013
x=[1 2 3]
y=[4 5 6]
x1=repmat(x,numel(y),1)
out=[x1(:) repmat(y',numel(x),1)]
5 Kommentare
Weitere Antworten (2)
Iain
am 11 Jun. 2013
x = repmat(x,numel(y),1)
y = repmat(y,1,size(x,2))
A = [x(:) y(:)]
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!