Question: Basic Matlab Plotting: Use Matlab to create the following single plot with three subplots. All titles, gridlines, and axis labels should be as shown. Notes:

Basic Matlab Plotting:
Use Matlab to create the following single plot with three subplots. All titles, gridlines, and axis labels should be
as shown.
Notes:
Each subplot must have the shown title and any axis labels shown-spelling will matter.
Hint: The Matlab help on subplot shows how to get one plot to extend across two columns.
The first subplot is an arc, centered at (3.5,-2), with radius =1.5, extending from 450 to 2250 from
the positive x-axis. Use a similar method as previously used to generate 100 pairs of (x,y) data for
a whole circle that is easy to modify to go between two angles. Also plotted is a + sign at the
center of the arc (created using plot(), not text()). Note that the axes have equal scaling (so the arc
Notes:
- Each subplot must have the shown title and any axis labels shown-spelling will matter.
- Hint: The Matlab help on subplot shows how to get one plot to extend across two columns.
- The first subplot is an arc, centered at \((3.5,-2)\), with radius \(=1.5\), extending from 450 to 2250 from the positive \( x \)-axis. Use a similar method as previously used to generate 100 pairs of \((x, y)\) data for a whole circle that is easy to modify to go between two angles. Also plotted is a + sign at the center of the arc (created using plot(), not text()). Note that the axes have equal scaling (so the arc is circular and not squished) and they extend at least 0.5 past where the circle containing the arc would be (xlim| and ylim).
- The second plot is response \(=1-\exp (-\) time), plotted from 0 to 10 with blue dash-dot lines. Note the title and axis labels. Set the \( y \)-axis limits such that the lower limit is clearly below the lowest part of the curve.
- The third is two curves: \( p o s=-2\cos 3 t \) and vel \(=6\sin 3 t \). The subplot uses the whole plot width. There must be axis labels, a legend positioned as shown, and the LineWidth of both curves is 2 for better visibility.
Some of the functions you will use are also in the PDF handout available on CatCourses.
```
% Plotting a figure with subplots
% create and clear a figure
clear all;
clf;
figure(1);
% create the three subplots
```
Basic Matlab Plotting: Use Matlab to create the

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!