why am I getting the following error?

11 Ansichten (letzte 30 Tage)
Francesca Nanni
Francesca Nanni am 8 Mai 2020
Beantwortet: Abdo Zayet am 22 Mai 2022
s = tf('s')
'tf' requires one of the following:
Control System Toolbox
DSP System Toolbox
Model Predictive Control Toolbox
Signal Processing Toolbox

Antworten (1)

Abdo Zayet
Abdo Zayet am 22 Mai 2022
clear all; %% FIRST TRANSFER FUNCTION G1: A1=[1 3 2 5]; B1=[0 1]; C1=[1 2]; G1=tf('num1','den1'); %%SECOND TRANSFER FUNCTION G2: A2=[-4 0 0 3]; B2=[1 0]; C2=[3 0]; G2=tf('num2','den2'); %%THIRD TRANSFER FUNCTION H: A3=[3 2 1 0]; B3=[1 1]; C3=[1 1]; H=tf('num3','den3'); %%GENERAL TRANSFER FUNCTION G: G1H=feedback(G1,H); G=series(G1H,G2)

Kategorien

Mehr zu Simulink finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by