Convert Equastion to Matlab Code

Respuestas (2)

Image Analyst
Image Analyst el 28 de En. de 2023
Try this:
numerator = 2 * (s + 1) .* (s - 2);
denominator = (s + 2) .* (s + 3) .* (s - 1);
H = numerator ./ denominator;
numerator = 5 * s .^ 2 + 15 * s + 10;
denominator = 5 * s .^ 4 + 7 * s .^ 3 + 20 * s .^ 2 + 24 * s;
G = numerator ./ denominator;
To learn other very fundamental concepts, invest 2 hours of your time here:

Categorías

Más información sobre Electrical Block Libraries en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 28 de En. de 2023

Respondida:

el 28 de En. de 2023

Community Treasure Hunt

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

Start Hunting!

Translated by