Why can the coordinates in "stem3" be defined only as vectors not matrices?
1 次查看(过去 30 天)
显示 更早的评论
Why can the coordinates in "stem3" be defined only as vectors not matrices?
0 个评论
采纳的回答
Star Strider
2017-1-22
The stem plots are intended to depict discrete data, specifically relating to signal processing, not the continuous data of other plots. If you have a matrix, use surf or mesh or related functions.
You can use stem3 with matrix arguments if you convert them into vectors first. For example if ‘X’, ‘Y’ and ‘Z’ are equal-sized matrices, you can convert them to vectors and plot them as:
figure(1)
stem3(X(:), Y(:), Z(:))
grid on
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!