Download this file

11 lines (8 with data), 289 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
function alpha = circ_rad2ang(alpha)
% alpha = circ-rad2ang(alpha)
% converts values in radians to values in degree
%
% Circular Statistics Toolbox for Matlab
% By Philipp Berens, 2009
% berens@tuebingen.mpg.de - www.kyb.mpg.de/~berens/circStat.html
alpha = alpha / pi *180;