Guest User

Untitled

a guest
Jan 19th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.39 KB | None | 0 0
  1. theta = atan(3/4); %rad
  2. F = 5.5;
  3.  
  4. A = [0 1 cos(theta) 1 0 0 0 0;...
  5.     1 0 sin(theta) 0 0 0 0 0;...
  6.     0 0 0 -1 0 0 1 0;...
  7.     0 0 0 0 0 -1 0 0;...
  8.     0 0 0 0 -cos(theta) 0 -1 0;...
  9.     0 0 0 0 sin(theta) 0 0 1;...
  10.     0 0 -cos(theta) 0 cos(theta) 0 0 0;...
  11.     0 0 -sin(theta) 0 -sin(theta) -1 0 0];
  12.    
  13. %B = [RAy RAx NAd NAb NDc NDb NBc RCy]';
  14. C = [0 0 0 0 0 0 0 F]';
  15. inv(A)*C
Add Comment
Please, Sign In to add comment