rad2deg.m

来自「In the planning stage of a GNSS-measurem」· M 代码 · 共 21 行

M
21
字号
function D=rad2deg(R)%RAD2DEG Converts angles from radians to degrees%%  deg = RAD2DEG(rad) converts angles from radians to degrees.%%  See also DEG2RAD, RAD2DMS, ANGLEDIM, ANGL2STR%  Copyright 1996-2002 Systems Planning and Analysis, Inc. and The MathWorks, Inc.%  Written by:  E. Byrns, E. Brown%   $Revision: 1.9 $    $Date: 2002/03/20 21:26:11 $if nargin==0	error('Incorrect number of arguments')elseif ~isreal(R)     warning('Imaginary parts of complex ANGLE argument ignored')     R = real(R);endD = R*180/pi;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?