0001 function d2G = opf_nle_hess1(x, lambda) 0002 Pg = x{1}; 0003 n = length(Pg); 0004 d2G = sparse([1;2], [2;1], [lambda; lambda], n, n); 0005 end