Size of the unique elements and size of the output of accumarray

2 vues (au cours des 30 derniers jours)
Snoopy
Snoopy le 8 Août 2021
Commenté : Snoopy le 8 Août 2021
Why are the sizes of the two arrays, unique and accumarray, not the same?
size(unique(MAT(:,1)))
size(accumarray(MAT(:,1),MAT(:,2)))

Réponse acceptée

Matt J
Matt J le 8 Août 2021
Modifié(e) : Matt J le 8 Août 2021
They will only be the same size if unique(MAT(:,1)) consists of consecutive integers starting from 1. Otherwise, accumarray must leave certain spots blank. A simpler example:
accumarray([2;4],1)
ans = 4×1
0 1 0 1

Plus de réponses (0)

Catégories

En savoir plus sur Data Types dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by