Help translating this expression to Matlab
์ด์ ๋๊ธ ํ์
[๐3๐ก + ๐ก2 sin(4๐ก)]๐๐๐ 2(3๐ก)
๋ต๋ณ (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!