Effacer les filtres
Effacer les filtres

Making part of a column negative depending on another column

2 vues (au cours des 30 derniers jours)
Christopher
Christopher le 10 Sep 2013
Hello,
I am trying to do the following. I have two column vectors as follows:
a=[3;5;8;2;-2;-5;-8];
b=[1;2;3;4;5;6;7];
I am trying to make the values of b corresponding to the locations of a negative in a, negative. so the result would be
b_new=[1;2;3;4;-5;-6;-7]
The last three values of b would be changed to negative because the last three values of a are negative. Both column vectors are the same length.

Réponse acceptée

Jeff E
Jeff E le 10 Sep 2013
b_new = sign(a) .* b

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by