Filter löschen
Filter löschen

concatenate two columns in matlab

13 Ansichten (letzte 30 Tage)
Fadal Sasse
Fadal Sasse am 10 Aug. 2017
Kommentiert: Fadal Sasse am 10 Aug. 2017
Hi there, I want to concatenate two variables from two columns in matrix into one column, for example, I have these variables
A =
1 4 6 3
2 6 9 9
3 7 8 0
I want to join the last two columns to be like this
1 4 63
2 6 99
3 7 80
How to do that? Thanx
  2 Kommentare
Stephen23
Stephen23 am 10 Aug. 2017
Bearbeitet: Stephen23 am 10 Aug. 2017
Is that a numeric matrix, or a character matrix, or a cell array containing numeric scalars or characters, or a table, or something else?
Fadal Sasse
Fadal Sasse am 10 Aug. 2017
A numeric matrix

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 10 Aug. 2017
[A(:,1:end-2), A(:,end-1)*10+A(:,end)]

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Tags

Noch keine Tags eingegeben.

Community Treasure Hunt

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

Start Hunting!

Translated by