Answered step by step
Verified Expert Solution
Question
1 Approved Answer
For MATLAB plz 10 Create a plot that looks like the image to the right, with these specifications: Colors go green, yellow, green Letter outlines
For MATLAB plz
10 Create a plot that looks like the image to the right, with these specifications: Colors go green, yellow, green Letter outlines are black Each letter is 10 units tall and 7 units wide The linewidth for each letter is 5 The bottom-left corner of the S is at coordinate (1,1) The figure axis is set to nicely frame the letters SEC 5 10 15 20 25 The starting script below provides some large clues. Begin with this and make edits/additions as needed. Note that this example script provides a blue letter outline, when it should be black. 1 2- 88 Provide coordinates for standard letters C_x = [ 7, 0, 0, 7]; % x-coords for C C_y = [10, 10, 0, 0); % y-coords for C 3- 4 5 6 - 88 Create blank figure; Set axis figure (1) hold on axis (0 20 0 12]); 7 - 8 - 9 10 11 8% Plot letter: C & declare amounts to shift this letter for placement on the figure x_shift 11; y_shift 12 - 13 14 1; 15 16- & compute the shifted x and y coords for the placement of this letter x = x_shift + C_x; y = y_shift + C_y; 17 - 18 19- 20 plot (x,y,'b-', 'LineWidth',7); plot (x, y,'g-', 'LineWidth',5); & make plot outline (black) & make plot (green, with thick line) 2Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started