<< bdschur | Control System functions | c2d >> |
bode() |
bode(H) |
bode(H, wIn) |
bode(H, w, lineSpec) |
[magnitude, phase, w] = bode(H) |
[magnitude, phase, w] = bode(H, wIn) |
a lti model.
a cell {wmin, wmax} or a vector [wmin:wmax].
Line style, marker, and color.
Magnitude: size 1 x 1 x k (SISO).
Phase: size 1 x 1 x k (SISO).
Frequencies: a vector: 1 x k.
bode(sys) generates a Bode plot illustrating the frequency response of a dynamic system model, denoted as sys.
This plot visually represents the system's response in terms of both magnitude (measured in decibels, dB) and phase (measured in degrees) across varying frequencies.
The specific frequency points on the plot are automatically determined by bode based on the system's inherent dynamics.
H = tf([1 0.1 7.5],[1 0.12 9 0 0]);
bode(H,{1 10}, '-.')
plot.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET