function radians = degrees_to_radians ( degrees ) %% DEGREES_TO_RADIANS converts an angle measure from degrees to radians. % % Modified: % % 23 April 2005 % % Author: % % John Burkardt % % Parameters: % % Input, real DEGREES, the angle measure in degrees. % % Output, real RADIANS, the angle measure in radians. % radians = ( degrees / 180.0 ) * 3.141592653589793;