Fill up peak by colour
2 次查看(过去 30 天)
显示 更早的评论
Hi,
I have a figure with multiple peaks.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/192768/image.png)
I want to fill up every peak by colors. I don't know the command to fill up by color. I found stem command in Matlab, but it doesn't fill with color. Any suggestion from anyone?
Thanks.
2 个评论
采纳的回答
madhan ravi
2018-7-29
编辑:madhan ravi
2018-7-29
Hi, try this EXAMPLE:
[PKS,LOCS]=findpeaks(y,TIME)
% TIME - x-axis
%y - y-axis
plot(LOCS,PKS,'ok',...
'MarkerEdgeColor','k',...
'MarkerFaceColor','c',...
'MarkerSize',10)
hold on
NOTE: YOU CAN ADJUST MARKERSIZE ACCORDING TO YOUR WISH.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/192744/image.png)
REMARK: THE CYAN COLORED DOT IS THE PEAK IN THE ABOVE PICTURE.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Preprocessing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!