Matlab内で作成​したボード線図の点列​データのエクスポート​方法

Matlab内で以下のコードを入力しボード線図を作成しました。その点列データ(周波数、ゲイン)をOriginやExcelにエクスポートしたいのですが、いくら調べてもエクスポートする方法が見つからないのでご教示をお願いします。
Differential = tf([1 0],[1]);
LPF = tf([1],[1 1]);
Inexact_differential = tf([1 0],[1 1]);
bodemag(Differential,LPF,Inexact_differential)

 採用された回答

michio
michio 2021 年 2 月 27 日

0 投票

の構文でデータを出力することができます。
ただこの構文の場合複数のシステムを同時に処理できないので、1つずつ処理する必要があるようです。
例:
LPF = tf([1],[1 1]);
figure(1)
bodemag(LPF)
figure(2)
[mag,phase,wout] = bode(LPF);
semilogx(wout,mag2db(squeeze(mag)))

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeInstrument Control Toolbox についてさらに検索

製品

リリース

R2020b

質問済み:

2021 年 2 月 27 日

回答済み:

2021 年 2 月 27 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!