short way to bar plot a discretize vector?

9 vues (au cours des 30 derniers jours)
Amit Ifrach
Amit Ifrach le 7 Fév 2023
Commenté : Jan le 9 Fév 2023
לק"י
Hello!
I want to take a vector A, and bar plot it using specific bins (defiend by 'edges' vector). I want the plot to show the sum of values that belong to each bin. Not the number of values like histogram does.
I started to write a code:
dsc=discretize(A, edges);
barpltcll=num2cell(edges);
for i=length(edges) %this part creates cell array that holds all the sum of values that fall in the bins.
barpltcll(2,i)=sum(A(dsc(i)))...
but I thought maybe there is shorter way to do it. I would love to know about it, like turn an option in the histogram() comamnd to show the sum of values that fell into the bin rather then the counts (number of values). :)
Thanks,
Amit.

Réponse acceptée

Jan
Jan le 7 Fév 2023
A = rand(1, 100);
edges = linspace(0, 1, 6);
dsc = discretize(A, edges);
result = accumarray(dsc(:), A(:)); % Default function: @sum
bar(edges(1:end-1), result)
  5 commentaires
Amit Ifrach
Amit Ifrach le 9 Fév 2023
Hi @Jan,
It's Yemenite jews way to start a writing (translates somewhat to for the hope for g-d)
Amit :)
Jan
Jan le 9 Fév 2023
@Amit Ifrach: Thanks for the explanation. I assume I guess correctly, what "g-d" is.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Distribution Plots 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