MATLAB: I have an angle data which unit is degree. This angle is more than 360 degree. I want to reduce this angle.

reducing angles;

%for example;
a=360.0009367 %degree Actually there is no any degree which more than 360 degree so I need to reduce this angle.
%sin(a)=sin(a-360) so actually my angle is 0.00009367 degree which I'm looking for
%what kind of codes I need to reduce the angles which more than 360 degree.
thanks in advance.

Best Answer

atand(tand(a))
Related Question