circstd.m 209 B

1234567
  1. function cstd=circstd(ph)
  2. % Synopsis
  3. % cstd=circstd(ph)
  4. % Desription:
  5. % cstd is the circular standarddeviation of the phase data in
  6. % ph (angular data in radians) in radians
  7. cstd=sqrt(-2*log(1-circvar(ph)));