Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign up
Find file
Copy path
TargetLocationSystems/MATLAB/Appendix E - Simulation Code Results/set_se2.m
Find file
Copy path
Fetching contributors…

function position_global = set_se2(x, y, yaw) | |
% SET_SE2 | |
% This function initializes a copter using a Special Euclidian | |
% Transformation Matrix in two-dimensional space. Easily updatable | |
% Two three dimensions | |
position_global = [cosd(yaw) -sind(yaw) x; sind(yaw) cosd(yaw) y; 0 0 1]; | |
end |