column multiplication by specific number with some condition
Afficher commentaires plus anciens
r = -5 + (5+5)*rand(10,1) % column with positive and negative numbers
I want to create the function r_1 by satisfying the following:
r_1= r .* 0.5 if r >0
and
r_1 = r .* 0.7 if r<0
I guess, I should multiply positive values by 0.5 and negative values by 0.7.
Réponses (1)
madhan ravi
le 15 Nov 2018
Modifié(e) : madhan ravi
le 15 Nov 2018
r_1=ones(1,numel(r)):
r_1(r>0)=r(r>0).*.5;
r_1(r<0)=r(r<0).*.7;
r_1
2 commentaires
/matlabcentral/profile/authors/13737395
le 15 Nov 2018
Modifié(e) : /matlabcentral/profile/authors/13737395
le 15 Nov 2018
madhan ravi
le 15 Nov 2018
Anytime :) make sure to accept the answer if it worked
Catégories
En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!