Transfer function response using idinput as input signal.

조회 수: 2 (최근 30일)
Rohan Gulur
Rohan Gulur 2023년 7월 28일
댓글: Star Strider 2023년 7월 28일
Hello, I currently have a binary(0, 1 alternating) input signal which I created using the idinput signal object. In addition, I also have a discretized transfer function which I have created.
Here is an example of my input signal function: u = idinput(100,'prbs',Band,Range);
My discretized transfer function is a normal discrete transfer function.
I want to plot the time domain response of this idinput signal with a system response using the discretized transfer function. I tried to use the lsim command with the following arguments(transferFunction, u, time).
I am getting an error when plotting the output however, stating that: Incorrect number or types of inputs or outputs for function 'iosize'.
Does anybody know how to properly plot the discretized transfer function response with an idinput signal object.
Regards.
  댓글 수: 1
Jon
Jon 2023년 7월 28일
Please provide a simple, standalone, runnable example that reproduces the problem, or at least copy your code, and the full error message. To include code, please use the insert code tool on the MATLAB answers toolbar.

댓글을 달려면 로그인하십시오.

채택된 답변

Star Strider
Star Strider 2023년 7월 28일
It would help to have the details.
Example —
num = rand(1,2)
num = 1×2
0.1917 0.8408
den = rand(1,3)
den = 1×3
0.7949 0.8426 0.3287
Ts = 0.01;
sys = tf(num,den,Ts)
sys = 0.1917 z + 0.8408 ------------------------------ 0.7949 z^2 + 0.8426 z + 0.3287 Sample time: 0.01 seconds Discrete-time transfer function.
Range = [-2,2];
Band = [0 1/4];
u = idinput(100, 'prbs', Band, Range);
Warning: The PRBS signal delivered is the 100 first values of a full sequence of length 124.
[y,t] = lsim(sys, u);
figure
plot(t, y, 'DisplayName','Output')
hold on
plot(t, u, 'DisplayName','Input')
hold off
grid
legend('Location','best')
This works.
.
  댓글 수: 2
Rohan Gulur
Rohan Gulur 2023년 7월 28일
Star Strider - This is exactly what I was looking for! Thank you.
Star Strider
Star Strider 2023년 7월 28일
As always, my pleasure!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Measurements and Feature Extraction에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by