Please I need help on Translating the following formulae into statements: 1) V=10(1− e0.2t ) (2) y =[e3t +t2 sin(4t)]cos2 (3t) Assume t as the row vector

9 views (last 30 days)
x(t)=10e−0.5t sin(3t+2)
y =[e3t +t2 sin(4t)]cos2 (3t)
v = 10(1e0.2t ) ..Assume t as the row vector

Answers (1)

VBBV
VBBV on 8 Mar 2024
t = 0:0.1:10;
x = 10*exp(-0.5*t).*sin(3*t+2);
y =exp(3*t)+t.^2 .* sin(4*t).*(cos(3*t)).^2
y = 1x101
1.0e+13 * 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000
v = 10*(1-exp(0.2*t))
v = 1x101
0 -0.2020 -0.4081 -0.6184 -0.8329 -1.0517 -1.2750 -1.5027 -1.7351 -1.9722 -2.2140 -2.4608 -2.7125 -2.9693 -3.2313 -3.4986 -3.7713 -4.0495 -4.3333 -4.6228 -4.9182 -5.2196 -5.5271 -5.8407 -6.1607 -6.4872 -6.8203 -7.1601 -7.5067 -7.8604

Categories

Find more on Programming in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!