write a function file, a - doublerovtriplecolumn (m, n), that takes 2 integers m and n and 02 creates an array a of size m x a where every element of a will be 2°row number +3*column number. in matlab
main.m
functiona = doublerovtriplecolumn(m, n) a = zeros(m, n); % Initializing an m x n array with zerosfori = 1:m
forj = 1:n
a(i, j) = 2^(i) + 3*(j); % Filling the array based on the given formulaendendend