Color histogram as a function of x-axis
1 次查看(过去 30 天)
显示 更早的评论
Hello all,
I am having trouble getting a histogram colored the way I want. I think the problem is simple, but its alluding me. All I want to do is have the plotted histogram color graded as a function of the x-axis values.
Best, -J
0 个评论
采纳的回答
Grzegorz Knor
2011-9-7
There is no built in function in MATLAB to do this.
My suggestion is:
x = rand(1000,1);
[n,xout] = hist(x);
width = 0.8*(xout(2)-xout(1));
base = 0;
clr = jet(length(n));
hold on
for k=1:length(n)
fill([xout(k)-width/2 xout(k)+width/2 xout(k)+width/2 xout(k)-width/2],...
[base base n(k) n(k)],clr(k,:))
end
hold off
see also:
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Histograms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!