function lejto() [x y] = meshgrid(-1:0.1:2, -1:0.1:2); z = sqrt(x.^2 + y.^2) .* (x>0 & y>0); surf(x, y, z); end