-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathrotm2d.m
43 lines (36 loc) · 1013 Bytes
/
rotm2d.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
%ROTM2D Create SO(2) rotation matrix
%
% R = ROTM2D(THETA) is an SO(2) rotation matrix (2x2) representing a
% rotation of THETA radians.
%
% R = ROTM2D(THETA, "deg") as above but THETA is in degrees.
%
% See also TROT2, ISROTM2D, TRPLOT2, ROTMX, ROTMY, ROTMZ, so2.
% Copyright 2022-2023 Peter Corke, Witold Jachimczyk, Remo Pillat
function R = rotm2d(theta, unit)
arguments
theta (1,1) = 0
unit (1,1) string {mustBeMember(unit, ["rad", "deg"])} = "rad"
end
assert((isreal(theta) | isa(theta, "sym")), ...
"RVC3:rotm2d:badarg", "theta must be a real scalar or symbolic");
if unit == "deg"
theta = deg2rad(theta);
end
ct = cos(theta);
st = sin(theta);
% make almost zero elements exactly zero
if ~isa(theta, "sym")
if abs(st) < eps
st = 0;
end
if abs(ct) < eps
ct = 0;
end
end
% create the rotation matrix
R = [
ct -st
st ct
];
end