Borrar filtros
Borrar filtros

how to write the matlab codes for cascading multiple transfer functions

25 visualizaciones (últimos 30 días)
Let say i have 10 transfer functions .How to cascade(series) them?
  3 comentarios
phoenix
phoenix el 6 de Jun. de 2019
how ? I tried the sys command but it multiplies only two transfer function.What will be the command for 10 transfer functions? @Walter Roberson
Walter Roberson
Walter Roberson el 6 de Jun. de 2019
https://www.cds.caltech.edu/~murray/wiki/Can_I_cascade_(multiply)_transfer_functions_in_MATLAB%3F

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 6 de Jun. de 2019
tf1 = tf(num1, den1);
tf2 = tf(num2, den2);
tf3 = tf(num3, den3);
tf4 = tf(num4, den4);
...
tf10 = tf(num10, den10);
tf_series = tf1 * tf2 * tf3 * tf4 * tf5 * tf6 * tf7 * tf8 * tf9 * tf10;
  1 comentario
honore ho
honore ho el 6 de En. de 2021
Hi all;
I have tried using this cascade tf1*tf2...; but the bode plot provides me unexpected results.
Are there any known bugs?

Iniciar sesión para comentar.

Más respuestas (1)

Wilbert Clarke
Wilbert Clarke el 23 de Mzo. de 2024
k=tf(2,1);

Categorías

Más información sobre Array and Matrix Mathematics en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by