====== Differences ====== This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
gibson:teaching:spring-2018:math445:lab2 [2018/01/30 03:48] gibson |
gibson:teaching:spring-2018:math445:lab2 [2018/01/31 16:07] (current) gibson [Part 3: Plots] |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Math 445 lab 2: plotting and scripts====== | + | ====== Math 445 lab 2: vectors, plots, and scripts====== |
Do the problems for parts 1 and 2 at the Matlab prompt, saving your work to a file with the ''diary'' command. | Do the problems for parts 1 and 2 at the Matlab prompt, saving your work to a file with the ''diary'' command. | ||
Line 15: | Line 15: | ||
<code Matlab> | <code Matlab> | ||
[] % square brackets | [] % square brackets | ||
+ | , % row separator | ||
+ | ; % col separator | ||
: % colon operator | : % colon operator | ||
' % apostrophe | ' % apostrophe | ||
Line 39: | Line 41: | ||
==== Part 2: Computing sums ==== | ==== Part 2: Computing sums ==== | ||
+ | |||
+ | Relevant Matlab syntax | ||
+ | <code matlab> | ||
+ | : % colon operator | ||
+ | sum % sum function | ||
+ | .* ./ .^ % dot syntax | ||
+ | </code> | ||
+ | |||
+ | |||
**10.** What is the sum of every third number between 3 and 27, inclusive? | **10.** What is the sum of every third number between 3 and 27, inclusive? | ||
Line 72: | Line 83: | ||
==== Part 3: Plots ==== | ==== Part 3: Plots ==== | ||
+ | Relevant Matlab | ||
+ | <code matlab> | ||
+ | .* ./ .^ % dot syntax | ||
+ | plot % plot function | ||
+ | axis % set limits on plot or aspect ratio | ||
+ | xlim % set x limits | ||
+ | ylim % set y limits | ||
+ | grid % turn grid on/off | ||
+ | help % help function | ||
+ | </code> | ||
- | **15.** Make a plot of the polynomial $f(x) = x^3 -5x^2 + 2x + 3$ as a blue line. In the same plot, draw a line along the $x$ axis. (Hint: in Matlab create a zero vector of the same length as your $x$ vector with ''y=0*x'', then plot $y$ versus $x$ along with $f$ versus $x$.) Using this plot, estimate the zeros of the polynomial, i.e. the values of $x$ for which $f(x) = 0$. Make sure to find all the zeros of $f$ by adjusting limits of the plot until all intersectionf of $f$ with the $x$-axis are visible. | + | **15.** Make a plot of the polynomial $f(x) = x^3 -5x^2 + 2x + 3$ as a blue line. In the same plot, draw a line along the $x$ axis. (Hint: in Matlab create a zero vector of the same length as your $x$ vector with ''y=0*x'', then plot $y$ versus $x$ along with $f$ versus $x$.) Using this plot, estimate the zeros of the polynomial, i.e. the values of $x$ for which $f(x) = 0$. Make sure to find all the zeros of $f$ by adjusting limits of the plot until all intersection of $f$ with the $x$-axis are visible. |
**16.** Make a plot of a unit circle, i.e. a curve that satisfies $x^2 + y^2 = 1$. Draw the circle with a thick red line, label the axes, and give the plot a title. Make sure the circle looks like a circle and not an oval. Hint: don't try to draw the plot using the equation $x^2 + y^2 = 1$. Instead parameterize the curve in terms of the angle $\theta$, i.e. calculate $x$ and $y$ from $\theta$. | **16.** Make a plot of a unit circle, i.e. a curve that satisfies $x^2 + y^2 = 1$. Draw the circle with a thick red line, label the axes, and give the plot a title. Make sure the circle looks like a circle and not an oval. Hint: don't try to draw the plot using the equation $x^2 + y^2 = 1$. Instead parameterize the curve in terms of the angle $\theta$, i.e. calculate $x$ and $y$ from $\theta$. | ||
+ | (I previously had a problem 17, revisiting the sum of $1/n$...to be written. But on second thought, this problem belongs in lab 3. So expect it there.) | ||