function z = c_4_p_17_fn_ii(x,y) [n1,n2] = size(x); [m1,m2] = size(y); if (n1==1) && (m1==1) [xx,yy] = meshgrid(x,y); z = ( xx.^10 ) .* ( yy.^10 ); else disp('x and y must be scalars or row vectors'); return; end