concatenate two columns in matlab

19 visualizzazioni (ultimi 30 giorni)
Fadal Sasse
Fadal Sasse il 10 Ago 2017
Commentato: Fadal Sasse il 10 Ago 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 Commenti
Stephen23
Stephen23 il 10 Ago 2017
Modificato: Stephen23 il 10 Ago 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 il 10 Ago 2017
A numeric matrix

Accedi per commentare.

Risposta accettata

Walter Roberson
Walter Roberson il 10 Ago 2017
[A(:,1:end-2), A(:,end-1)*10+A(:,end)]

Più risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Tag

Non è stata ancora inserito alcun tag.

Community Treasure Hunt

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

Start Hunting!

Translated by