Help translating this expression to Matlab

Respuestas (1)

Star Strider
Star Strider el 20 de Feb. de 2021
My best guess:
y = (exp(3*t) + t.^2.*sin(4*t)).*cos(3*t).^2;
or as an anonymous function:
y = @(t) (exp(3*t) + t.^2.*sin(4*t)).*cos(3*t).^2;
.

Categorías

Más información sobre Simulink en Centro de ayuda y File Exchange.

Etiquetas

Respondida:

el 20 de Feb. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by