This is a tracing problem. Given that the following function…
This is a tracing problem. Given that the following functions are defined below and lines 2 and 3 are run in the Command Window, fill in the blanks on each line with the value of the variable indicated in the comments. Note: Indicate vectors of characters by placing single quotes around them. Indicate vectors of logicals by placing brackets around zeros and ones for true and false respectively. Indicate vectors of numbers by placing brackets around the numbers in the vector. 1 %Command Window Scope2 a = ‘AbCdEf-02′; %The last two characters in this vector are zero and one3 c = gamma(a) % The value stored in c after this line has run is 4 function c = gamma(a)5 a % The value stored in a after this line has run is 6 a = delta(a) % The value stored in a after this line has run is 7 b = strfind(a,’-‘) % The value stored in b after this line has run is 8 c = zeta(a(b+1:end)) % The value stored in c after this line has run is 9 d = a(1:b-1) % The value stored in d after this line has run is 10 d() = ‘hit’ % The value stored in d after this line has run is 11 d(2:2:end) = 12 c = % The value stored in c after this line has run is 13 end14 function b = delta(b)15 b % The value stored in b after this line has run is 16 c = (b==’A’) | (b==’C’) | (b==’E’) % The value stored in c after this line has run is 17 b(c) = b(c)+32 % The value stored in b after this line has run is 18 end19 function c = zeta(b)20 b % The value stored in b after this line has run is 21 c = double(b(1)) % The value stored in c after this line has run is 22 c = c + str2num(b(2)) % The value stored in c after this line has run is 23 end