cannot plot histogram
i did following
x = randn(1,10000);
hist(x); % doesnt work
plot(hist(x)) % prints garbage in plot window
1
vote
Anonymous
shared this idea
Seems to work fine for me. See screenshot:
http://i.imgur.com/pmoXryx.png
You may have hit the server at a busy time. Histogram plots tend to be resource-intensive so the plot may not have finished before the timer killed the process.
-
Anonymous commented
wow that was fast response. i hope u get more server resources.