EGR 103/Fall 2018/Minilab 4

From PrattWiki
Revision as of 01:03, 4 December 2018 by DukeEgr93 (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Troubleshooting

Typos

4.5.1

  • To get multiple lines on the same graph, you will plot the first one then issue the command hold on. Make the rest of your plots, then set hold off. For example:
plot(x, y1, 'k-')
hold on
plot(x, y2, 'r--')
plot(x, y3, 'g:')
hold off
  • For the legend, add labels to the legend command in the order you made the plots. For example:
plt.legend('y1', 'y2', 'y3', 'location', 'best')
The last part tells MATLAB to put the legend in the best - or most clear - location.

Partial Answer

St: 5.793e+00
Sr: 7.850e-02
r2: 9.864e-01

The model should be a green dashed line going through the data points.

4.5.2

  • Be sure to create a function called u_y that returns a value. Since the return calculation is long, you will want to put it in multiple lines separated by ellipses (...). For instance, the following calculation is one line of code:
y = @(x) x.^3 + x.^2 + ...
    x.^1 + x.^0

Partial Answer

Root 1: 2.338e+00
Root 2: 7.762e+00
Min of y=-2.086e+01 at x=+1.279e+00
Min of y=-3.274e+01 at x=+8.708e+00
Min of y=-2.086e+01 at x=+1.279e+00
Max of y=+1.953e+02 at x=+5.702e+00

The graph should be like your graph from a previous lab for this problem.

4.5.3

Partial Answer

(1)
     5     8    15
     8     4    10
     6     0    10
(3)
     3    -2    -1
    -6     0     4
    -2     0    -2
(4)
    28    21    49
     7    14    49
    14     0    28
(5)
     3     6     1
(6)
    25    13    74
    36    25    75
    28    12    52
(7)
    54    76
    41    53
    28    38
(8)
     9     2
     4    -1
     3     7
    -6     5
(11)
    66    19    53
    19    29    46
    53    46   109
(12)
    46

4.5.4

  • For complex numbers, write the imaginary part followed directly by a j with no space -- including if you are writing just j. Also, do not put spaces around the + or - between the real and imaginary parts - for instance:
a = 4+1j
Do not use i (it works, but still...) and do not forget to put the number in front of j, even if that number is a 1.

Partial Answer

8.3: 
  -1.5181e+01
  -7.2464e+00
  -1.4493e-01
8.5:
  -5.3333e-01 + 1.4000e+00i
   1.6000e+00 - 5.3333e-01i

4.5.5

  • Note: when you define your function for curve fitting, the coefficients will be the first argument, followed by the independent variable, followed by the dependent variable. This is a slightly different order from Python.

Your definition line will likely be something like:

yeqn = @(coefs, x) coefs(1) * x .* exp(-(x / coefs(2)) + 1) / coefs(2)

Partial Answer

St: 2.837e+04
Sr: 1.116e+03
r2: 9.607e-01

Coefficients and graph should match what you got when you solved this in Python. Be sure you are using good initial guesses - bad initial guesses will result in a flat red line! If your statistical values are a little different, that may just be different initial guesses.

4.5.6

  • Be sure to look closely at the provided example. The graph should look like the one you got in Minilab 3.