program for sin wave histogram with plot command, not with hist command
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to have histogram of sine wave but not with hist command, can any one help me to have histogram of sine wave with plot command? I've found how to plot a series of data, but I don't know for a sin wave how can i plot it's histogram? the number of bins can be optional.
0 Kommentare
Antworten (2)
Ruben
am 8 Mär. 2013
You could try doing it with the rectangle command, type
help rectangle
in your command window to find out more.
However I don't see why you can't use the hist command...
0 Kommentare
Image Analyst
am 8 Mär. 2013
I'm not sure what you're asking. Exactly what does "have histogram of sine wave with plot command" mean? Do you mean that you just want to plot it in an axes with the plot() command (like the body of your post seems to indicate)? Or do you want to DETERMINE the histogram some other way than the hist() function (like the subject line of your post seems to indicate)? Why can't you just do
[counts values] = hist(yourSineSignal, numberOfBins);
plot(values, counts);
???
0 Kommentare
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!