Basic histogram with histogram function.
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
daniel caltrider
am 14 Mai 2020
Kommentiert: Ameer Hamza
am 15 Mai 2020
I am trying to create a histogram from a data set in excel by importing it to matlab.
I can't get the histogram function to work with a table or data array after import.
I need to use the data set to make a histogram with a bin width of 50 and then subtract one entry per bin.
how do I reference the array or table in the histogram function? how would I subtract one entry per bin?
any help would be greatly appreciated.
3 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 15 Mai 2020
Bearbeitet: Ameer Hamza
am 15 Mai 2020
To decrease, one entry per bin, try this
[num,~,~]=xlsread('histogram2.xlsx');
d=num;
h = histogram(d,50);
h.BinCounts = h.BinCounts-1
9 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Histograms 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!