how to import average and maximum data from excel sheet .

1 visualizzazione (ultimi 30 giorni)
hi all:
i want to import avarege data of each day from above excel file but avarege of that values which is greater than 0.
second i want find greatest average value day in that excel file .
thanks

Risposta accettata

Sudhakar Shinde
Sudhakar Shinde il 20 Ott 2020
Modificato: Sudhakar Shinde il 20 Ott 2020
[~,Num,Data]=xlsread('solar02.xlsx');
%Average values greater than zero
Average = mean(Data(2:end,3)>0);
%Maximum
max(Average);
  12 Commenti
Engineer Batoor khan mummand
Done thank u so much dear from your helping and support.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Prodotti


Release

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by