Earthquake/radians.m

4 lines
111 B
Matlab

function rad = radians(degree) % градусы в радианы
%% By L_DelOff
rad = degree .* pi / 180;
end