Skip to content

Commit

Permalink
add reference paper for sigma lerner calculation docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
henry-aocs committed Nov 29, 2017
1 parent 88800e8 commit d12da5d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion quaternions/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ def covariance_matrix_from_angles(angles_list):


def sigma_lerner(covariance_matrix):
""" Computes sigma lerner from covariance matrix"""
"""
Computes sigma lerner from covariance matrix using Lerner's method as explained in
'The attitude determination system of the RAX satellite', page 133, doi:10.1016/j.actaastro.2012.02.001
"""
values, _ = np.linalg.eig(covariance_matrix)
return 1.87 * np.sqrt(max(values))

Expand Down

0 comments on commit d12da5d

Please sign in to comment.