Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
HW1
  • Loading branch information
Braisted committed Sep 12, 2017
1 parent bd8feb6 commit 5b542df
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Expand Up @@ -3,6 +3,17 @@
# Answer to Homework Question
I hope to learn how to perform MATLAB functions more easily.

#A_66
```MATLAB
A_66=zeros(6:6);
for i=1:6;
j=1:6;
A_66(i,j)=i*j;
end
Average = mean(A_66(:))
Standard_Deviation = std(A_66(:))
#Problem 4
```MATLAB
data=dlmread('US_energy_by_sector.csv',',',2,0);
Expand Down

0 comments on commit 5b542df

Please sign in to comment.