fork download
  1. f=@(x,y)sum(z=x:y)^2-z*z'
  2.  
  3. f(5,9)
  4. f(91,123)
  5. f(1,10)
Success #stdin #stdout 0.47s 121792KB
stdin
Standard input is empty
stdout
f =

@(x, y) sum (z = x:y) ^ 2 - z * z'

ans =  970
ans =  12087152
ans =  2640