Hello Michael,
Sorry, but I have to revisit the basics of unc.lib again, namely: how to assign complex uncertainties in magnitude and phase? This is needed, if e.g. manufacturers specify the uncertainties of their calibration standards in mag/phase and not real/imag
This seems a simple task, but I am cleary doing something wrong. See example:
value=0.8-0.5i;
u_abs=0.1;
u_angle=10*pi/180;
u_cmplx=u_abs*exp(1i*u_angle);
s11=unc(value,diag([real(u_cmplx) imag(u_cmplx)]).^2);
abs(s11)
180/pi*angle(s11)
Greetings, Karsten