Help translating this expression to Matlab
显示 更早的评论
回答(1 个)
Star Strider
2021-2-20
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;
.
类别
在 帮助中心 和 File Exchange 中查找有关 Simulink 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!