Hello
If one
wants to use matrix functions from MATLAB like det() or inv() on a matrix of type unc.lin,
they usually work. Also if you have a subarray of a 3D matrix, but unfortunately not for a
subarray of a 4D matrix:
s2=unc(rand(2,2));
s3=unc(rand(2,2,3));
s4=unc(rand(2,2,3,4));
inv(s2)
inv(s3(:,:,1))
inv(s4(:,:,1,1))
Is there a way to work with larger arrays, without losing the uncertainty chain
(e.g. applying get_value and get_stdunc to build a new matrix)?
Greetings, Karsten