How do I plot outside temperature versus time in Matlab?
Show older comments
Hello,
I'm not sure how to graph the following code in Matlab (Temperaure over 24 hour period should look sinusodal):
for t = 1:24
T(t,1) = (((Tmax - Tmin)/2)+((Tmax - Tmin)/2) * sin(((t - 9)/12)*Pi));
Thank you!
6 Comments
rough93
on 25 Sep 2019
Do you already have the temperature numbers in MATLAB? Or do you have to pull those numbers within the program.
Jessica Poulin
on 25 Sep 2019
rough93
on 25 Sep 2019
And you want to graph a sin wave between 1 and 24 with these max and min values? just an even sin wave without any data provided for the hours in between?
Jessica Poulin
on 25 Sep 2019
rough93
on 25 Sep 2019
Gotcha! See my answer below. If you want to start from midnight instead of mid day, change the +3 to -9.
KALYAN ACHARJYA
on 25 Sep 2019
Where is temperature data to plot across time hours?
Answers (2)
Kevin Phung
on 25 Sep 2019
Edited: Kevin Phung
on 25 Sep 2019
no for loop needed.
Tmax = 310;
Tmin = 298;
t=(1:24)'; % transposed if you want a column vs row
T = ((Tmax - Tmin)/2) + ((Tmax-Tmin)/2)*sin((t-9)/12*pi)
figure
plot(T)
clc; clear
Tmax = 310; % Maximum daily temperature (3pm)
Tmin = 298; % Minimum daily temperature (3am)
x = 1:24;
Graph = 12*sin(((x+3)*pi)/12);
plot(Graph)
This assumes you start at mid day.
Categories
Find more on Programming in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!