Sorting of vector values

I have two vectors A and B obtained after MATLAB analysis. Both matrices have positive and negative values, starting from the same index. I want to replace all the negative values from let's say vector A with the corresponding positive values from vector B and vice-versa. How do I do that ?

3 Comments

What happens when both A and B are negative at the same index?
And what happens if both are positive for that matter?
Why not take the maximum of both:
C = max(A, B);
dpb
dpb on 12 Jul 2018
Edited: dpb on 12 Jul 2018
"... what happens if both are positive...?"
As OP wrote the problem description, nothing happens to A as it's nonnegative.

Sign in to comment.

Answers (0)

Categories

Asked:

on 12 Jul 2018

Edited:

dpb
on 12 Jul 2018

Community Treasure Hunt

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

Start Hunting!