Filter löschen
Filter löschen

How to round decimals to other decimal values already defined

1 Ansicht (letzte 30 Tage)
Hello, I would like to request your support to know how to round certain decimal values to others closer. For example, if I have [0.359 0.679 0.890 0.5653] I would like to know how I can round up these values to only take the following [0.2 0.4 0.6 0.8] depending on the value in which they are. So for example 0.359 would be rounded to 0.4, 0.679 to 0.8, etc. The criterion in the example is: less than 0.65 is the value of the nearest smaller number that is 0.6 and greater than or equal to 0.65 is the value of the next higher number that would be 0.8

Akzeptierte Antwort

KVM
KVM am 29 Nov. 2017
This is a way of doing it! :
a = [0.359 0.679 0.890 0.5653];
b = [0.2 0.4 0.6 0.8];
newA =0;
for iLoop = 1:length(a)
c = b-a(iLoop);
d = c( c>=0 );%Keep only Positive Value
[e index] = min(d);
if ~isempty(d);
newA(iLoop) = e+a(iLoop);
else
newA(iLoop) =0; % Default Value
end
end
newA %Display Result
Display: newA =
0.4000 0.8000 0 0.6000
  1 Kommentar
Pilar Jiménez
Pilar Jiménez am 30 Nov. 2017
Thank you very much, it is a way of doing it that I would have never considered it. It will definitely help me a lot.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by