fork download
  1. s=@(m,n)[a=ones(n,1)*n;b=ones(m,1)*m].*[b;a]'
  2.  
  3. s(4,3)
  4.  
  5. s(3,0)
  6.  
  7. s(1,3)
  8.  
Success #stdin #stdout #stderr 0.19s 65048KB
stdin
Standard input is empty
stdout
s =

@(m, n) [a = ones(n, 1) * n; b = ones(m, 1) * m] .* [b; a]'

ans =

   12   12   12   12    9    9    9
   12   12   12   12    9    9    9
   12   12   12   12    9    9    9
   16   16   16   16   12   12   12
   16   16   16   16   12   12   12
   16   16   16   16   12   12   12
   16   16   16   16   12   12   12

ans =

   9   9   9
   9   9   9
   9   9   9

ans =

   3   9   9   9
   3   9   9   9
   3   9   9   9
   1   3   3   3

stderr
warning: product: automatic broadcasting operation applied
warning: product: automatic broadcasting operation applied
warning: product: automatic broadcasting operation applied