Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
acc and readme
  • Loading branch information
Braisted committed Sep 14, 2017
1 parent c658d93 commit b93219f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Problem 5/my_acceleration.m
Expand Up @@ -22,5 +22,6 @@ function [ax,ay,az]=my_acceleration(x,y,z,t)
ax = diff_match_dims(vx',t);
ay = diff_match_dims(vy',t);
az = diff_match_dims(vz',t);
%added apostrophe for derivatives of velocity

end
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -3,7 +3,7 @@
# Answer to Homework Question
I hope to learn how to perform MATLAB functions more easily.

#Problem 3
#Problem 3 (Mean_Std)
```MATLAB
A_66=zeros(6:6);
for i=1:6;
Expand All @@ -18,7 +18,7 @@ mean of A_66 = 12.25

stdev of A_66 = 9.07

#Problem 4
#Problem 4 (Energy Use)
```MATLAB
data=dlmread('US_energy_by_sector.csv',',',2,0);
h=figure();
Expand Down Expand Up @@ -54,7 +54,7 @@ saveas(h,'figure_02.png')
```
![Cumulative US Energy Use per Year from 1949-2016](./Problem 4/figure_02.png)

#Problem freefall
#Problem 5 (Freefall)

```MATLAB
g=figure();
Expand All @@ -78,4 +78,4 @@ saveas(g,'figure01.png')

![Velocity Comparison by Varying Time Steps](./Problem 3/figure01.png)

#Problem 5 (Velocity and Acceleration)
#Problem 6 (Velocity and Acceleration)

0 comments on commit b93219f

Please sign in to comment.