Question: Matlab fuction Write a function which takes two index arrays like the ones from question 2 (mxnx2 arrays where the first channel is the first
Matlab fuction
Write a function which takes two index arrays like the ones from question 2 (mxnx2 arrays where the first channel is the first coordinate and the second channel is the second coordinate) and computes the euclidean distance between the coordinates at each entry, and normalizes the values to the range [0,1] by dividing by the maximum distance between any two corresponding points in the arrays. So the output will be an mxn array with values ranging from 0 to 1 that are proportional to the distance between the points mat1(i,j,:) and mat2(i,j,:). Below are a couple examples:
>> get_index_array(3,2) ans(:,:,)- >>get_index_array(2,3) ans(:,:,)- ans(:,:,2)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
