Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Problem 4
  • Loading branch information
Braisted committed Sep 12, 2017
1 parent e7d9b33 commit bd8feb6
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions README.md
Expand Up @@ -2,3 +2,30 @@

# Answer to Homework Question
I hope to learn how to perform MATLAB functions more easily.

#Problem 4
```MATLAB
data=dlmread('US_energy_by_sector.csv',',',2,0);
figure(1)
plot(data(:,1),data(:,3),data(:,1),data(:,9));
set(0, 'defaultAxesFontSize', 16)
set(0,'defaultTextFontSize',14)
set(0,'defaultLineLineWidth',3)
set(gcf, 'Position', [200, 200, 1000, 800])
xlabel('Time (years)')
ylabel('Total Energy Consumed (trillions of BTUs)')
legend('Residential','Transportation','Location','northwest')
title('US Energy Consumption from 1949 to 2016')
rescum=cumsum(data(:,3))./1000000;%cumulative sum of residential energy
%consumption in quintillions
transcum=cumsum(data(:,9))./1000000;%cumulative sum of transportational
%energy consumption in quintillions
figure(2)
plot(data(:,1),rescum,data(:,1),transcum)
set(gcf, 'Position', [500, 200, 1000, 800])
xlabel('Time (years)')
ylabel('Total Energy Consumed (quintillions of BTUs)')
legend('Residential','Transportation','Location','northwest')
title('Cumulative US Energy Consumption from 1949 to 2016')

0 comments on commit bd8feb6

Please sign in to comment.