Einzelner Bode Plot MIMO System

조회 수: 4 (최근 30일)
Leon Thürnau
Leon Thürnau 2017년 4월 5일
답변: Leon Thürnau 2017년 4월 5일
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)

채택된 답변

Leon Thürnau
Leon Thürnau 2017년 4월 5일
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]);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Frequency-Domain Analysis에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by