how to plot multiple discrete values in stem plot using line segment
2 次查看(过去 30 天)
显示 更早的评论
I got the i=[4 5 5 6] and similarly p=[4 5 7 8] .I got both i and p values in y axis. and in x axis i got [8 10 12 14 ] how can i use stem plot for this case .is there ant possibility
0 个评论
回答(1 个)
Daniel Shub
2012-3-5
What about something like:
errorbar(x, i+diff([i;p])/2, diff([i;p])/2, diff([i;p])/2)
3 个评论
Daniel Shub
2012-3-27
What isn't perfect? I am not sure what "impicable" means. The syntax stem(8,4,4) is not valid.
Matt Tearle
2012-3-27
"impossible", perhaps?
Anyway, you can do stem(x,[i',p']), you could also do a hold and set various properties of each stem plot -- the doc has a number of nice examples. Perhaps you could give us some idea of what you want the resulting plot to look like?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Formatting and Annotation 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!