Borrar filtros
Borrar filtros

I need program to calculate and plot average values of per hour, day, month and seasonal.

1 visualización (últimos 30 días)
I have 1440 data in one day. I want to convert hourly, daily, monthly and seasonal mean and plot it.
data = load('yea.dat');
Year=data(:,1);
Month=data(:,2);
Day=data(:,3);
UT=data(:,4);
vTEC = data(:,5);% Ave_vTEC_Obs (TECu)

Respuestas (1)

Amit Dhakite
Amit Dhakite el 15 de Mzo. de 2023
Editada: Amit Dhakite el 16 de Mzo. de 2023
Hi Lamessa,
As per my understanding, you have some data "yea.dat" file, for which you want to find out mean of each column and plot its values.
For simplicity let's take random values and plot their mean values:
% To generate random values for 5 columns
Data = rand(1440, 5);
% To calculate mean of each column, second parameter "1" representing
% calculation of mean column-wise
Mean_Data = mean(Data, 1);
% To plot the calculated mean values
plot(Mean_Data);
To find out more about the functions used above, kindly go through the following links:
  1. rand(): https://www.mathworks.com/help/matlab/ref/rand.html
  2. mean(): https://www.mathworks.com/help/matlab/ref/mean.html
  3. plot(): https://www.mathworks.com/help/matlab/ref/plot.html

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by