Skip to content

Instantly share code, notes, and snippets.

@MShirazAhmad
Created February 5, 2020 06:56
Show Gist options
  • Save MShirazAhmad/7a21d3e1608571a8221a64cc99e07a89 to your computer and use it in GitHub Desktop.
Save MShirazAhmad/7a21d3e1608571a8221a64cc99e07a89 to your computer and use it in GitHub Desktop.
Propagation of uncertainties in fraction.
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