create tuples of values in array

first of all thanks for help :-|)
how can i compression two matrixes
for example
X=[x1,x2,x3,..,xn];
Y=[y1,y2,y3,..,yn];
in one matrix by a way that each element in X array make groupe with the corresponding from the Y matrix as
xy=[(x1,y1),(x2,y2),(x3,y3),..,(xn,yn)];
and how we can sort it agine to
X=[x1,x2,x3,..,xn];
Y=[y1,y2,y3,..,yn];

Antworten (1)

Alan Stevens
Alan Stevens am 22 Nov. 2020
Bearbeitet: Alan Stevens am 22 Nov. 2020

0 Stimmen

How about
x=[x1,x2,x3,..,xn];
y=[y1,y2,y3,..,yn];
xy = [x; y];
X = xy(1,:);
Y = xy(2,:);

1 Kommentar

ahmed noori
ahmed noori am 22 Nov. 2020
Bearbeitet: ahmed noori am 22 Nov. 2020
very useful thak you so much but not works with two dimensional matrix

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Data Types finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 22 Nov. 2020

Bearbeitet:

am 22 Nov. 2020

Community Treasure Hunt

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

Start Hunting!

Translated by