f(n) = 4*(1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + ...),where n is the number of terms in the right-hand-side parentheses.
fibo(n+2) = fibo(n+1) + fibo(n)and the following initial conditions:
fibo(1) = 0 and fibo(2) = 1Please submit hardcopy of the M-file fibo.m.
z = sin(x/2)*cos(y),where x should have 21 linearly sampled points along the interval [-2*pi, 2*pi], and y should have 31 linearly samples points along the interval [-1.5*pi, 1.5*pi]. Put the plots in the same figure by using subplot(2,2,1) and subplot(2,2,2) commands. The figure should look like this: