Hi,
I don't know how to caculate the uncertainty contribution of inputs to the uncertainty of output in multivariate case? For example,

how to caculate the x1,x2 uncertainty contribution to y1 or y2?
or I also compute a example in matlab and use the unc_budget and get_unc_component, the two function generate different results. Can you tell me how they compute. I also upload the .m file.
unc = @LinProp;
X=unc([1;2;0],[0.25,0.01,0.02;0.01,0.04,0;0.02,0,0.01]);
Y1=X(1)+X(2)+X(3);
Y2=X(1).^2+X(2);
Y3=X(1)+X(3)+2.*X(2);
unc_budget(Y1)
Y1_X1=get_unc_component(Y1, X(1))
Y1_X2=get_unc_component(Y1, X(2))
Y1_X3=get_unc_component(Y1, X(3))
Regards.
Charlene