Created
January 9, 2024 08:11
Calculate solid angle of Rotation Roll-Pitch-Yaw in Excel
This file contains hidden or 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.