Skip to content

Instantly share code, notes, and snippets.

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