Created
February 5, 2020 06:54
-
-
Save MShirazAhmad/1257e60286e8200842f22f610b69ba27 to your computer and use it in GitHub Desktop.
Propagation of uncertainties in multiplication.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Utotal = Umult(X,Ux,Y,Uy) | |
Utotal = sqrt( (Ux.*Y).^2 + (Uy.*X).^2 ); | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment