Advertisement
Guest User

Untitled

a guest
Oct 18th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.28 KB | None | 0 0
  1. euler_our = q2euler(xhat_work.x);
  2. euler_google = q2euler(meas_work.orient);
  3. figure()
  4. for n = 1 : 3
  5.     hold on
  6. subplot(3,1,n)
  7. plot(euler_our(n,:))
  8. hold on
  9. plot(euler_google(n,:))
  10. legend('our','google')
  11.  
  12.  
  13.  
  14. %hold on
  15. %plot(tplot,normpdf(tplot,mean_gyr(n),cov_gyr(n,n)));
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement