I have raw observations of 500 numerical values (from 1 to 25000) in a text file, I want to make a frequency distribution in MATLAB. I tried a histogram (histogram), however I would prefer a frequency distribution curve than blocks and bars.
Any help is appreciated!
If you pass two output parameters to HIST , you get the x-axis and y-axis values. Then you can build the data as you wish. For instance,
[counts, bins] = hist(mydata); plot(bins, counts); %# get a line plot of the histogram
You can try kernel density smoothing score
Source: https://habr.com/ru/post/1740264/More articles:UITableView provides an empty table, does not load data - objective-cHow to practically configure IE context menu? - c ++Как получить Java-приложение для подписки на издателя NServiceBus? - javakey value matching for class NSObject? - objective-cMemcache in python - pythonUsing @keyword in C # is a bad idea? - c #initialization element is not a permanent error - cocoa-touchASP.NET MVC: Which mechanic returns ViewModel objects? - c #Background image of selected cell - objective-cmail sent with php mail () has an empty field - phpAll Articles