Created
January 9, 2024 08:11
-
-
Save eruffaldi/dd2d2e79d3d6249f11fef2fa80298546 to your computer and use it in GitHub Desktop.
Calculate solid angle of Rotation Roll-Pitch-Yaw in Excel
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
=LAMBDA(r,p,y,ARCCOS((COS(p)*COS(r)+COS(p)*COS(y)+COS(y)*COS(r)+SEN(p)*SEN(r)*SEN(y)-1)/2))(A3,B3,C3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The above is an example of invocation of the Lambda using RPY from A3,B3,C3
Input in Radians and output in Radians. The degree version can be easily implemented.