Einzelner Bode Plot MIMO System

4 views (last 30 days)
Ich habe ein Simulink Modell mit 2 Eingängen und 3 Ausgängen. Der Bode Plot in Matlab liefert entsprechend 12 Diagramme, da er von jedem Eingang zu jedem Ausgang Amplitude und Phase ausgibt. Wie kann der Bode Plot Befehl für einen speziellen Eingang zu einem speziellen Ausgang genutzt werden, sodass nur 1 Diagramm gezeigt wird ? (z.B. Nur Amplitude von Eingang 1 zu Ausgang 2)
Translation
I have a simulink model with 2 inputs and 3 outputs. The Bode plot in Matlab provides 12 diagrams as it outputs amplitude and phase from each input to each output. How can the Bode Plot command be used for a special input to a special output so that only 1 diagram is shown? (E.g., only amplitude from input 1 to output 2)

Accepted Answer

Leon Thürnau
Leon Thürnau on 5 Apr 2017
Lösung:
h = bodeplot(System);
setoptions(h,'PhaseVisible','off','FreqUnits','Hz','InputVisible',{'on' 'off'},...
'OutputVisible',{'off' 'on' 'off'}, 'Grid','on', 'XLimMode', 'manual',...
'XLim', [10^0 10^4]);

More Answers (0)

Tags

Products

Community Treasure Hunt

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

Start Hunting!