Effacer les filtres
Effacer les filtres

how to group data points in matrix

1 vue (au cours des 30 derniers jours)
Amy Xu
Amy Xu le 27 Avr 2017
Modifié(e) : Andrei Bobrov le 27 Avr 2017
Matrix A as follows:
A = [
10
20
5
15
35
40
25
30
5
10
];
Based on the following criteria, I want to give code to every array (X) in matrix A:
if 0 < X <= 5 then code = 1
if 5 < X <= 10 then code = 2
if 10 < X <= 15 then code = 3
if 15 < X <= 20 then code = 4
if 20 < X <= 25 then code = 5
if 25 < X <= 30 then code = 6
if 30 < X <= 35 then code = 7
if 30 < X <= 40 then code = 8
results something like:
out = [
10 2
20 4
5 1
15 3
35 7
40 8
25 5
30 6
5 1
10 2
];

Réponse acceptée

Roger Stafford
Roger Stafford le 27 Avr 2017
Assuming all numbers in X lie between 0 and 40, and that X is a column vector as indicated in your description, then do:
code = sum(bsxfun(@le,X,5:5:40),2);

Plus de réponses (2)

Don Mathis
Don Mathis le 27 Avr 2017
out = [A floor(A/5)]

Andrei Bobrov
Andrei Bobrov le 27 Avr 2017
Modifié(e) : Andrei Bobrov le 27 Avr 2017
out = [A,discretize(A,0:5:max(A)+1,'IncludedEdge','right')];

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