How to plot Waterfall x-dir reversed and remove the baseline plot?
6 ビュー (過去 30 日間)
古いコメントを表示

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 件のコメント
dpb
2014 年 5 月 29 日
編集済み: dpb
2014 年 5 月 29 日
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.
回答 (0 件)
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!