How to plot Waterfall x-dir reversed and remove the baseline plot?
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
On this waterfall plot, some changes would like to be done:
(1) plot x-axis in reversed order. set(h, 'XDir','reverse') doesn't work here. If used view(190,30) the Y is reversed too, which is not desired.
(2) under every curve, a baseline is added somehow by waterfall, which is not wanted. How can these baseline be removed?
(3) if possible, remove the Z-axis scale label, only keep x and y labels.
Thanks for your help.
1 commentaire
dpb
le 29 Mai 2014
Modifié(e) : dpb
le 29 Mai 2014
What doesn't "work" with 'xdir','reverse'?
Not sure about the baseline
Can fix 3) --
set('ztick',[])
One for three ain't bad... :)
ADDENDUM
waterfall is an m-file, however, so you can see what it's doing internally (and it's not at all that long, either).
I see something interesting in the comments beginning with
% Add 2 data points to the beginning and three data points at the end
% of each row for a patch. ...
There might be somewhere you can play, I don't know. That it is a series of patches makes one wonder if can get rid of the baseline, however; might have to revert to trying to build a series of line plots.
Réponses (0)
Voir également
Catégories
En savoir plus sur Surface and Mesh Plots dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!