フィルターのクリア

I need code for discretize a tf with "Integral forward"

1 回表示 (過去 30 日間)
Sergio
Sergio 2012 年 3 月 7 日
I did this function and work fine...
function [sys] = adelante(sys, T)
z = tf('z');
T = input('Tiempo de Muestreo: ');
s = (T*z)/(z-1);
FuncT = input('Ingrese la funcion de transferencia: ');
sys = FuncT;
end
but when I do this doesn't works
close all
clear all
clc
syms s
Gs = (303*s + 463.9)/(s^2 + 508.7*s + 779.9);
Ep = double(limit((1/(1+Gs)),s,0))
T = 0.001;
adelante(Gs,T)
and the function
function [sysd] = adelante(sys,T)
z = tf('z',T)
s = (T*z)/(z-1)
sysd = FuncT;
end
  1 件のコメント
Walter Roberson
Walter Roberson 2012 年 3 月 7 日
"this doesn't work" is not enough information for us to go on.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by