(42S) Rotation Matrix - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Software Libraries (/forum-10.html) +--- Forum: General Software Library (/forum-13.html) +--- Thread: (42S) Rotation Matrix (/thread-8643.html) |
(42S) Rotation Matrix - Eddie W. Shore - 07-07-2017 05:46 AM R = [[ cos θ, -sin θ ],[ sin θ, cos θ ]] Code:
Example: Input: [3, -2], at an angle θ = 40° Result: [ 1.0126, -3.4605 ] |