I need someone to code in MATLAB

Job ID: 35517407

Budget: $15 – $25 USD

Your function should take two inputs:
- Altitude: an m x n matrix of altitude data. Each element is 10 kilometers from the points above,
below, rightward, and leftward from it.
- Water: an m x n matrix that only has elements with values 1 and 0. This matrix has information
for whether the measurement location was covered in water (1) or dry land (0).
And return two outputs:
- Topograph: an m x n x 3 uint8 color image. Topograph should be color coded in the following
way:
o Blue for any data point that is covered in water
o Black for any data point that is below sea level (Elevation below 0)
o Green for any data point above 0 and up to 1000 meters
o Yellow for any data point above 1000 and up to 2000 meters
o Orange for any data point above 2000 and up to 3000 meters
o Red for any data point above 3000 and up to 4000 meters
o White for any data point above 4000 and up to 4500 meters
o Cyan for any data point above 4500 meters

o Additionally, you should make the highest point in your topographical map magenta the
lowest point on your topographical map that is not under water purple. You can assume
that there won’t be two highest and lowest points.

- lowHighDist: The distance between the low and high points on land in this data. Again, each
matrix element is 10 kilometers from the elements above, below, rightward, and leftward from it.
You can use the Pythagorean Theorem to solve for distance.