Clear Filters
Clear Filters

merging two matrix into a single one

2 views (last 30 days)
Hi,
I have two matrices.
j =
1 2 3
0 0 0
0 0 0
k =
0 0 0
0 0 0
4 1 7
I need the following matrix
l =
1 2 3
0 0 0
4 1 7
How to do that? Thanks

Accepted Answer

Matt Fig
Matt Fig on 15 Jun 2011
J = [1 2 3;0 0 0;0 0 0];
K = [0 0 0;0 0 0;4 1 7];
L = max(J,K)

More Answers (1)

Walter Roberson
Walter Roberson on 15 Jun 2011
J = [1 2 3;0 0 0;0 0 0];
K = [0 0 0;0 0 0;4 1 7];
L = J + K;
or
L = J; L(K<>0) = K(K<>0);
  5 Comments
Andrei Bobrov
Andrei Bobrov on 15 Jun 2011
L(K~=0) = K(K~=0)
Hi Mohammad! "<>" -> "~=" analog in other languages
Walter Roberson
Walter Roberson on 15 Jun 2011
Oops... the symbolics use <> and I've been answering questions about those again.

Sign in to comment.

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!