classify array elements without so many if statement

2 visualizaciones (últimos 30 días)
zilai si
zilai si el 15 de Oct. de 2019
Respondida: Andrei Bobrov el 15 de Oct. de 2019
hello,everyone
Now i have an array A with double element between 0 to 8 ,now i want to sort them with interval length 0.5 ,i.e.
if A(i)<0.5
A(i) = 1;
else
if A(i)<1
A(i) = 2;
else
if A(i)<1.5
A(i) = 3;
else ...
But this is too lengthy and stupid...i wonder if there are any better ways to handle it.

Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 15 de Oct. de 2019
out = discretize(A,0:.5:8)

Más respuestas (1)

Mir Amid Hashemi
Mir Amid Hashemi el 15 de Oct. de 2019
Use the discretize function
https://uk.mathworks.com/help/matlab/ref/double.discretize.html

Categorías

Más información sobre Shifting and Sorting Matrices en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by