Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
Matlab 5. Make a graph of the temperature of each daily average (x=day, y=temp). Make one graph per lake to show the yearly temperature trends.
Matlab
5. Make a graph of the temperature of each daily average (x=day, y=temp). Make one graph per lake
to show the yearly temperature trends. Label the axes clearly and add titles to your all graphs.
https://coastwatch.glerl.noaa.gov/ftp/glsea/avgtemps/2017/glsea-temps2017_1024.dat(based on this data)
my code was
x=[1:365];
y=[1.33:16.43];
plot(x,y)
it keeps telling me that the vectors arent the same length which i kinda know
but i didnt know what code i can use for y variable to include the temperature for all 365 days to match the x length which is 365
also i tried to import the data from excel and it didnt look like it works.
also wondering for this question will i need to import the data or not