Specify the spherical distance between Munich and Bangalore in degrees and the mean radius of Earth in kilometers. Compute the distance (measured along the Earth's surface) between Munich and Bangalore, in kilometers.
D = 64.7;
radEarth = 6371;
R = deg2rad(D);
dist = radEarth*R
D — Angle in degrees scalar | vector | matrix | multidimensional array
Angle in degrees, specified as a scalar, vector, matrix, or
multidimensional array. If D contains complex elements, deg2rad converts
the real and imaginary parts separately.
Data Types: single | double Complex Number Support: Yes