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 commentaires

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

Connectez-vous pour commenter.

Réponses (0)

Catégories

Modifié(e) :

dpb
le 12 Juil 2018

Community Treasure Hunt

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

Start Hunting!

Translated by