0
Generate Signals in Scilab

1. Generate a signal y(t) = sin(t) + (1/3)*sin(3t) + (1/5)*sin(5t) +(1/7)*sin(7t).
2. Generate a signal y(t) = cos(t) *(1/3)*sin(3t) + (1/5) *cos(5t) *(1/7)*cos(7t).
3. Generate a signal y(t) = exp[x + 4*y] + (4^x)*(7^y).

Please anybody help me


Scilab 25-05-21, 12:16 p.m. Dragrex
0
Hello,You try these steps if you needed you can change time period by your requirement.
t=1:20;
y(t) = sin(t) + (1/3)*sin(3*t) + (1/5)*sin(5*t) +(1/7)*sin(7*t);
plot(y(t));
24-06-21, 11:52 a.m. husee


Log-in to answer to this question.