A=rand(3);
b=sum(A,2);

[n,m]=size(A);

for i=1:n
    Ai=A;
    Ai(:,i)=b;
    x(i)=detLaplace(Ai)/detLaplace(A);
end
