Effacer les filtres
Effacer les filtres

rounding of the numbers in a array as per a condition

2 vues (au cours des 30 derniers jours)
Chandradhar Savanth
Chandradhar Savanth le 3 Nov 2013
hi..
suppose i have an array x=[1 ,2, -2.2, 2.2, -3, 4];
all the elements of the above array should satisfy the condition that they should lie in the interval [-2 2];
if any element is less than '-2' then i should round-off it to '-2'.
if any element is greater than '2' then i should round-off it to '2'.
but remaining elements should be unchanged.
so,finally i should get the answer as x = [1 ,2 ,-2 ,2, -2, 2];
is there a smart coding way with out using loops.
Regards.
Chandradhar Savanth...

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 3 Nov 2013
max(min(x,2),-2)

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices 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