Creating a histogram

Hi,
Is the correct syntax to create a histogram of data X with 22 bins the following
hist(X,22)
When I type it noting happens?

 采纳的回答

That is correct. When you say "nothing happens", do you mean that the line of code executes, but no figure is produced? If so, try
clf;
X = randn(1000,1);
hist(X,22);

3 个评论

Thanks - Yes, no figure is produce,
clf RESET gives this error though?
??? Error using ==> clo at 32
Unknown command option.
Error in ==> clf at 80
clo(fig, extra{:});
Got it working, thanks
yea, sorry about that! I fixed that :)

请先登录,再进行评论。

更多回答(0 个)

类别

标签

Community Treasure Hunt

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

Start Hunting!

Translated by