Question: Using matlab and the code provided please answer M4.2.2. thank you % Script Eg4_2 % Displays interpolants of the colors cyan and magenta % Prepare
Using matlab and the code provided please answer M4.2.2. thank you 
% Script Eg4_2 % Displays interpolants of the colors cyan and magenta % Prepare the figure window... close all figure axis equal off hold on % Color initializations... cyan = [0 1 1]; % rgb of the "bottom" color magenta = [1 0 1]; % rgb of the "top" color n = 10; % the number of "in between" colors is n-1 x = [0 3 3 0]; % locates the x-values in the tiles y = [0 0 1 1]; % locates the y-values in the tiles % Add colored tiles to the figure window... for j=0:n % Display the jth tile and its rgb value... f = j; v = (1-f)*cyan + f*magenta; fill(x,y+j,v) text(3.5,j+.5,sprintf('[ %4.2f , %4.2f , %4.2f ]',v(1),v(2),v(3))) end hold off shg M4.2.2 Modify Eg4_2 so that it produces three figures. The first should display the tiles with endpoint colors red and green, the second with endpoint colors red and blue, and the third with endpoint colors green and blue
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
