tf is not working .
17 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mang Thawng
el 29 de Sept. de 2021
Movida: Arkadiy Turevskiy
el 11 de En. de 2024
R=470;
L=100*10^-3
C=0.22*10^-6
L =
0.1000
C =
2.2000e-07
num=[1/(R*C) 0]
num =
1.0e+03 *
9.6712 0
>> den=[1 1/(R*C) 1/(L*C)]
den =
1.0e+07 *
0.0000 0.0010 4.5455
>> T=tf(num, den)
'tf' requires one of the following:
Control System Toolbox
DSP System Toolbox
Model Predictive Control Toolbox
RF Toolbox
Signal Processing Toolbox
0 comentarios
Respuesta aceptada
Star Strider
el 29 de Sept. de 2021
Movida: Arkadiy Turevskiy
el 11 de En. de 2024
License and install the Control System Toolbox and the code should work.
R=470;
L=100E-3;
C=0.22E-6;
L = 0.1000;
C = 2.2000e-07;
num=[1/(R*C) 0]
den=[1 1/(R*C) 1/(L*C)]
T=tf(num, den)
figure
bodeplot(T)
.
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!