How to plot the Unit Step response of a transfer function?
236 ビュー (過去 30 日間)
古いコメントを表示
I would like to kindly ask how do I plot the Unit Step response, when given the transfer function.
For instance C = any simple transfer function
How would I plot the Unit Step response of this Transfer Function on any given axes
Many thanks in advance.
0 件のコメント
採用された回答
DUY Nguyen
2023 年 3 月 2 日
%Hope this could help you!
% Define the transfer function
num = [10 120 660 2280 4730 4600 1600];
den = [1 14 113 628 2379 6350 11115 9800 3200];
sys = tf(num, den);
% Plot the unit step response
step(sys);
% Add title and axis labels
title('Unit Step Response');
xlabel('Time (seconds)');
ylabel('Output');
% Customize the axis
xlim([0 10]); % set x-axis limits
ylim([0 1.2]); % set x-axis limits
grid on; % add grid lines
3 件のコメント
Thanh Thuy Duyen Nguyen
2024 年 4 月 22 日
if I plot 2 step response function how could I assign color to each plot?
Sam Chak
2024 年 4 月 22 日
You can refer to the example in stepplot.
If you need any further assistance or have any additional questions, please feel free to post a New Question.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!