Effacer les filtres
Effacer les filtres

array multiplication with a negative value

3 vues (au cours des 30 derniers jours)
Bathrinath
Bathrinath le 11 Juin 2014
Commenté : Bathrinath le 11 Juin 2014
A=[0,-2.2,-3.3,-25;1.2,0,-1.1,12;2,-8,8,0] my answer is to be A=[0,-2.2,-3.3,-25;-1.2,0,-1.1,-12;-2,-8,-8,0]. I need to convert the values in A which is greater than zero as -A. I have used if A(A > 0) A=-A; end This is not working. Suggest some points

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 11 Juin 2014
Modifié(e) : Andrei Bobrov le 11 Juin 2014
t = A > 0;
A(t) = -A(t);
or
A = -abs(A);

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by