Skip to content

Instantly share code, notes, and snippets.

@eruffaldi
Created January 9, 2024 08:11
Calculate solid angle of Rotation Roll-Pitch-Yaw in Excel
=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)
@eruffaldi
Copy link
Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment