3D Graph (bar3?) with two vectors and one matrix

7 visualizaciones (últimos 30 días)
Carlos  Vázquez Rodríguez
Carlos Vázquez Rodríguez el 13 de Oct. de 2021
Respondida: Alamanda Ponappa Poovaya el 2 de Nov. de 2021
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!

Respuestas (1)

Alamanda Ponappa Poovaya
Alamanda Ponappa Poovaya el 2 de Nov. de 2021
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

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by