Transfer function to filter signal Simulink to Matlab

2 次查看(过去 30 天)
Hello Everyone,
I have extracted this small part of my simulink model:
I have been trying to realize this in Matlab code without success. First I used the filter option but I realized that A,B do not correspond to numerator and denominator of the transfer function. Then I have tried to use the tf comand to make a transfer function but i do not know how to feed an array of discrete data to it.
I know it is probably trivial but help is greatly appreciated.

采纳的回答

Askic V
Askic V 2022-12-13
编辑:Askic V 2022-12-13
This shouldn't be a big problem in Matlab code. The most work is in defining input signal. Here's one example:
close all
clc
num = 0.5;
den = [20 1];
% Create transfer function
G = tf(num,den);
t = 0:0.01:50;
% Creting pulse:
u = ones(size(t));
u(t >= 20 & t < 40) = -1;
% Simulate
y = lsim(G, u, t);
subplot(211)
plot(t,u)
subplot(212)
plot(t,y)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 General Applications 的更多信息

产品


版本

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by