Skip to content

Merge original #1

Merged
merged 29 commits into from Feb 2, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
3f723f4
lecture 2 notes
rcc02007 Jan 19, 2017
e6166c3
HW 1 add collaborator
rcc02007 Jan 19, 2017
88f2c75
office hours updated
rcc02007 Jan 19, 2017
afbd43c
welcome to Peiyu
rcc02007 Jan 24, 2017
3f67614
added lectures 3 and 4
rcc02007 Jan 26, 2017
8785ec4
added temporary_file to test github desktop
rcc02007 Jan 26, 2017
225c502
Delete temporary_file.txt
rcc02007 Jan 26, 2017
bd5e59d
updated lecture_04
rcc02007 Jan 26, 2017
ae4d20e
Merge branch 'master' of https://github.uconn.edu/rcc02007/ME3255S2017
rcc02007 Jan 26, 2017
10234c8
remove old plot pngs
rcc02007 Jan 26, 2017
a623138
add pdf of lecture_4
rcc02007 Jan 26, 2017
e5b6204
added lecture_05
rcc02007 Jan 26, 2017
e44a490
added lecture_05
rcc02007 Jan 26, 2017
af7ae19
added HW 2
rcc02007 Jan 27, 2017
7696985
format HW2
rcc02007 Jan 27, 2017
7f93380
fix typo in HW2
rcc02007 Jan 27, 2017
a498831
add HW2 figure
rcc02007 Jan 28, 2017
9cff604
Merge branch 'master' of https://github.uconn.edu/rcc02007/ME3255S2017
rcc02007 Jan 28, 2017
490943d
add HW2 figure png
rcc02007 Jan 28, 2017
0156322
add HW2 figure png
rcc02007 Jan 28, 2017
f8b20da
Update README.md
rcc02007 Jan 28, 2017
ae2b934
Update syllabus tools used
rcc02007 Jan 28, 2017
436a6ba
Update syllabus tools used and format
rcc02007 Jan 28, 2017
ab77768
Add matlab link
rcc02007 Jan 28, 2017
517b20c
Add links for octave and github
rcc02007 Jan 28, 2017
561666b
Peiyu's office hour is updated.
pez16103 Jan 30, 2017
67cefad
updated lecture 05
rcc02007 Jan 31, 2017
db85c52
Merge branch 'master' of https://github.uconn.edu/rcc02007/ME3255S2017
rcc02007 Jan 31, 2017
908bbf1
updated lecture 06
rcc02007 Feb 2, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions HW1/README.md
Expand Up @@ -55,3 +55,7 @@
vii. Paste this into the Homework #1 Google form reponse.
(https://goo.gl/forms/jINjsioRLwQOiYtl2)[https://goo.gl/forms/jINjsioRLwQOiYtl2]

![Step 9](g9.png)

viii. Click on the gear for "Settings" then "Collaborators" on the left menu. Add
`rcc02007` (Ryan C. Cooper) as a collaborator.
Binary file added HW1/g9.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions HW2/README.md
@@ -0,0 +1,36 @@
# Homework #2
## due 2/3/17

1. Now that you have created your own repository, 'homework_1', that has a README.md file.
Create a new file in this repository called `setdefaults.m`. This file is a matlab/octave
script that will set default plotting parameters. In this file, add the following lines:

```matlab
set(0, 'defaultAxesFontSize', 16)
set(0,'defaultTextFontSize',14)
set(0,'defaultLineLineWidth',3)
```

Commit the changes to your repository.

![projectile(v_mag,theta) predicts the height of the projectile based upon initial
velocity and position, as see in the Figure](projectile.png)

2. Clone your 'homework_1' repository to your own computer. Now, we want to create a
function that uses kinematic formulas to predict the path of a projectile. The dimensions
are taken from official dart board dimensions
[darts](http://dartbrokers.com/dartboard-height.html). Create a function,
`projectile.m` that will calculate the location of an object with an initial velocity. The
function inputs are v_mag (initial speed), theta (initial angle). The output is the height
of the object 2.37 m from its starting position. Assume g=9.81 m/s^2 and its initial
height is 1.72 m.

```matlab
>> h=projectile(v_mag,theta)

h= 1
```

In addition to the output of `h`-height at 2.37 m-plot the path of the object from its
initial position to its position at 2.37 m away from the start. *Note: use your
`setdefaults.m` to set the plot defaults before outputting the result.*
Binary file added HW2/projectile.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
334 changes: 334 additions & 0 deletions HW2/projectile.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.