How to plot Waterfall x-dir reversed and remove the baseline plot?
6 views (last 30 days)
Show older comments
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 Comment
dpb
on 29 May 2014
Edited: dpb
on 29 May 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.
Answers (0)
See Also
Categories
Find more on Surface and Mesh Plots in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!