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 件のコメント

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

サインインしてコメントする。

回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeShifting and Sorting Matrices についてさらに検索

タグ

質問済み:

2018 年 7 月 12 日

編集済み:

dpb
2018 年 7 月 12 日

Community Treasure Hunt

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

Start Hunting!

Translated by