concatenate two columns in matlab

24 views (last 30 days)
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 Comments
Stephen23
Stephen23 on 10 Aug 2017
Edited: Stephen23 on 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?

Sign in to comment.

Accepted Answer

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

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!