3D Graph (bar3?) with two vectors and one matrix
2 次查看(过去 30 天)
显示 更早的评论
Dear community,
I am triying to use 'bar3' to obtain a 3D bar graph from three differebt datasets:
- A vector time(426x1 double)
- A vertor Xaxis(40x1 double)
- A matrix FlowRate(426x40 double)
As you can guess, the objecitve is to plot the evolution of the FlowRate (Z-axis) along the time(Y-axis) at several locations (X-axis). Is this possible with 'bar3'? Or should I find another alternative?
Thank you in advance!
0 个评论
回答(1 个)
Drishan Poovaya
2021-11-2
As per my understanding, you will not get the type of output you want with bar3. Refer to the documentation of bar3
How it works is you provide a matirx Z, and bar3(Z) will plot a bar graph where each bar corresponds to one element of Z and has the height of that element.
I would suggest you use stem3 instead, this should give you the result you expect
% x 40x1 double
% y 426x1 double
% FlowRate 426x40 double
[X,Y] = meshgrid(x,y);
% X, Y 426x40 double
stem3(X,Y,FlowRate)
Documentation
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Discrete Data Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!