pspectrum関​数の結果を指定した座​標軸に結果をプロット

2 views (last 30 days)
takashi kanda
takashi kanda on 14 Oct 2020
Commented: takashi kanda on 16 Oct 2020
Matlab GUIにてアプリを作成しています。pspectrum関数では出力引数を設定せずに使用すると現在のFigureに結果がプロットされます。
この時の結果を指定した座標軸に出力させるにはどうすればよろしいでしょうか。

Accepted Answer

takemoto
takemoto on 15 Oct 2020
愚直な方法にはなりますが、以下のドキュメントにもあるとおり、一度変数に格納してから描画する、という方法でいかがでしょうか。
[p,f] = pspectrum(x);
plot(f/pi,abs(p))
  1 Comment
takashi kanda
takashi kanda on 16 Oct 2020
試してみたいと思います。
ご回答ありがとうございました。

Sign in to comment.

More Answers (0)

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!