Einzelner Bode Plot MIMO System

4 Ansichten (letzte 30 Tage)
Leon Thürnau
Leon Thürnau am 5 Apr. 2017
Beantwortet: Leon Thürnau am 5 Apr. 2017
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)

Akzeptierte Antwort

Leon Thürnau
Leon Thürnau am 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]);

Weitere Antworten (0)

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by