combine two matrices to get another matrix of same size

2 views (last 30 days)
I have two matrices of same order say 'a' and 'b':
a=[1,2;3,4];
b=[5,6;7,8];
How to combine these matrices in order to get a 3rd matrix of the form:
c=[15,26;37,48]
i.e. each cell of first matrix combine with corresponding cell of another matrix.

Accepted Answer

madhan ravi
madhan ravi on 20 Nov 2018
Edited: madhan ravi on 20 Nov 2018
>> a=string([1,2;3,4]);
b=string([5,6;7,8]);
c=str2double(strcat(a,b))
c =
15 26
37 48
>>
  10 Comments
Walter Roberson
Walter Roberson on 23 Jan 2020
That is not valid in MATLAB unless you switch to string. It is not possible to have a numeric entry that has a negative sign in the middle of it and have the negative preserved.

Sign in to comment.

More Answers (1)

Bruno Luong
Bruno Luong on 20 Nov 2018
>> a=[1,2;3,4];
>> b=[5,6;7,8];
>> a*10+b
ans =
15 26
37 48

Community Treasure Hunt

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

Start Hunting!