Creating a waterfall plot

12 vues (au cours des 30 derniers jours)
Jared
Jared le 19 Fév 2013
Commenté : Veronica yep le 27 Juin 2017
I have data in a 2d plot, but I want to display it as a "waterfall" with the first value x(0),y(0) at the top, and x(i),y(i) at the bottom. You can visualize just flipping the plot over the x axis. This can be simply done by inverting the y data, but then on the plot, I have negative y values when in reality, they are positive. Is there any way to "flip" the plot?
  1 commentaire
Veronica yep
Veronica yep le 27 Juin 2017
can you post the code for creating this 2d waterfall please? if you still have it

Connectez-vous pour commenter.

Réponse acceptée

Sean de Wolski
Sean de Wolski le 19 Fév 2013
flipud() or fliplr() ?
doc fliplr
doc flipud
  3 commentaires
Sean de Wolski
Sean de Wolski le 19 Fév 2013
What about just changing the 'XDir' of the axes to 'reverse' so that it's flipped?
plot(whatever);
set(gca,'XDir','reverse');
Jared
Jared le 19 Fév 2013
Perfect! Thanks

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Line Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by