Complete the missing line so that all positive values in x r…

Complete the missing line so that all positive values in x remain unchanged and all other values become zero. Guideline: Do not put spaces between operators. ================================== function y=getpositive(x) [Fill up This Line! ] end ====================================   For example, if: x=[-3 5 -2 8 0 4] the function should return y=[0 5 0 8 0 4]  

Given the following matrices:   A = [1  2  3  4;     5  6  7…

Given the following matrices:   A = [1  2  3  4;     5  6  7  8;     9 10 11 12;    13 14 15 16]; B = [-6  -12  -18  -24;     -30 -36  -42  -48;     -54 -60  -66  -72;     -78 -84  -90  -96];   You want to multiply matrices A and B, store the result in C, and then extract rows 2 and 3 and columns 3 and 4 of C. Which MATLAB code correctly performs these operations?