Help translating this expression to Matlab
Ältere Kommentare anzeigen
[𝑒3𝑡 + 𝑡2 sin(4𝑡)]𝑐𝑜𝑠2(3𝑡)
Antworten (1)
Star Strider
am 20 Feb. 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;
.
Kategorien
Mehr zu Simulink finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!