

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


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));
Login to add comment