Created
February 5, 2020 06:56
-
-
Save MShirazAhmad/7a21d3e1608571a8221a64cc99e07a89 to your computer and use it in GitHub Desktop.
Propagation of uncertainties in fraction.
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 = Ufraction(X,Ux,Y,Uy) | |
Utotal = sqrt((Ux./Y).^2 + ((X.*Uy)./(Y.^2)).^2); | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment