How do I plot outside temperature versus time in Matlab?

7 vues (au cours des 30 derniers jours)
Jessica Poulin
Jessica Poulin le 25 Sep 2019
Commenté : KALYAN ACHARJYA le 25 Sep 2019
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 commentaires
rough93
rough93 le 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
KALYAN ACHARJYA le 25 Sep 2019
Where is temperature data to plot across time hours?

Connectez-vous pour commenter.

Réponses (2)

Kevin Phung
Kevin Phung le 25 Sep 2019
Modifié(e) : Kevin Phung le 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)

rough93
rough93 le 25 Sep 2019
Modifié(e) : rough93 le 25 Sep 2019
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.

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by