Converting positives to negatives in a column.

29 visualizaciones (últimos 30 días)
Christopher
Christopher el 8 de Sept. de 2013
I have somewhat of a confusing problem that I need help with. I am going to explain it the best that I can, so here goes. I have two column vectors, one is Cp the others is Cf. The Cp column has positive values and some negative values. I basically need to take the rows in the Cp column that are negative and make the same rows of Cf negative. For example:
Cp=[1;2;-3;-4;5]
Cf=[1;3;5;7;9]
Then the new column vector would be:
new_vector=[1;3-5;-7;9]
Basically making any negative row in Cp, negative in Cf.
Is there any easy way to do this? Any help is much appreciated.

Respuesta aceptada

Walter Roberson
Walter Roberson el 8 de Sept. de 2013
Cf(Cp<0) = -Cf(Cp<0);

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by