wavelet波形の図を3次元で作成した際に,Y軸 (擬似周波数) を反転 (手間が高周波,奥が低周波) する方法について
2 views (last 30 days)
Show older comments
waavelet波形の図を3次元で作成しようとしています。
2次元では,axis XYで擬似周波数を反転 (下が低周波,上が高周波)になります。
しかし,wavelet波形を3次元で作成した際に,Y軸 (擬似周波数) を反転 (手間が高周波,奥が低周波) する方法が不明です。
どのコマンドを使用したらいいのか不明なのでご教示いただけると幸いです。
0 Comments
Accepted Answer
Naoya
on 14 Jul 2017
3次元グラフの Y 軸の向きの変更については、次のコマンドで設定できます。 例えば、現状のグラフ表示で低周波数が手前に表示されている場合は、
% 高周波数を手前に表示
>> set(gca,'Ydir','reverse')
また、元に戻す場合は、
>> set(gca,'Ydir','normal')
で設定します。
0 Comments
More Answers (0)
See Also
Categories
Find more on 2 次元および 3 次元プロット in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!