program for sin wave histogram with plot command, not with hist command

3 views (last 30 days)
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.

Answers (2)

Ruben
Ruben on 8 Mar 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...

Image Analyst
Image Analyst on 8 Mar 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);
???

Community Treasure Hunt

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

Start Hunting!