-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathtformry.m
32 lines (27 loc) · 955 Bytes
/
tformry.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
%TFORMRY Create SE(3) matrix for pure rotation about Y axis
%
% T = TFORMRY(THETA) is a homogeneous transformation (4x4) representing a
% pure rotation of THETA radians about the y-axis. The translational
% component is zero.
%
% T = TFORMRY(THETA, "deg") as above but THETA is in degrees.
%
% References:
% - Robotics, Vision & Control: Fundamental algorithms in MATLAB, 3rd Ed.
% P.Corke, W.Jachimczyk, R.Pillat, Springer 2023.
% Chapter 2
%
% See also ROTMY, TFORMRX, TFORMRY, TFORM2D, se3.
% Copyright 2022-2023 Peter Corke, Witold Jachimczyk, Remo Pillat
function T = tformry(theta, unit)
arguments
theta (1,1) = 0
unit (1,1) string {mustBeMember(unit, ["rad", "deg"])} = "rad"
end
assert((isreal(theta) | isa(theta, "sym")), ...
"RVC3:tformry:badarg", "theta must be a real scalar or symbolic");
if unit == "deg"
theta = deg2rad(theta);
end
T = [rotmy(theta) [0 0 0]'; 0 0 0 1];
end